mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
12 lines
138 B
Plaintext
12 lines
138 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
export WM="dwm"
|
||
|
|
||
|
wmpid(){
|
||
|
tree="$(pstree -ps $$)"
|
||
|
tree="${tree#*$WM(}"
|
||
|
echo "${tree%%)*}"
|
||
|
}
|
||
|
|
||
|
kill -HUP "$(wmpid)"
|