]> git.alrj.org Git - zsh.d.git/blob - scripts/konsolewrap
Initial commit
[zsh.d.git] / scripts / konsolewrap
1 #! /usr/bin/zsh
2 # This small script renames the konsole tab to the commands' last argument
3
4 typeset -a args
5 args=$@
6 lastarg="${args[(w)-1]}"
7 dcop ${KONSOLE_DCOP_SESSION} renameSession "$lastarg"
8 exec $cmd "$@"
9