added i3 dotfiles

This commit is contained in:
2020-06-11 16:12:10 +02:00
parent 78df635d9e
commit 9d9feafbfd
4 changed files with 221 additions and 0 deletions

18
.config/i3/killScript.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/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