add kill_screens to zshrc

This commit is contained in:
Martinez 2016-02-20 17:08:27 +01:00
parent 934b9cd4cc
commit 15909a086c

View file

@ -66,6 +66,15 @@ zres () {
hash -r
}
# kill GNU Screen pages in the specified range
kill_screens () {
for p in {$1..$2}
do
screen -p $p -X stuff "exit\n"
done
}
# winetricks tools
wt-prefix() {
export WINEPREFIX="$HOME/.local/share/wineprefixes/$1"