22 lines
501 B
Bash
Executable File
22 lines
501 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# based on https://github.com/pastapojken/i3SteamOrKill
|
|
# required packages:
|
|
# - xdotool
|
|
|
|
winID=$(xdotool getactivewindow)
|
|
winClass=$(xprop -id $winID WM_CLASS)
|
|
|
|
if [[ $winClass = *"Steam"* ]]; then
|
|
xdotool windowunmap $(xdotool getactivewindow)
|
|
exit
|
|
elif [[ $winClass = *"evolution"* ]]; then
|
|
|
|
i3-msg kill
|
|
systemctl --user stop evolution-source-registry.service
|
|
killall -e /usr/lib/evolution-data-server/evolution-alarm-notify
|
|
exit
|
|
else
|
|
i3-msg kill
|
|
exit
|
|
fi
|