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