19 lines
466 B
Bash
19 lines
466 B
Bash
|
#!/usr/bin/env bash
|
||
|
# based on https://github.com/pastapojken/i3SteamOrKill
|
||
|
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
|