1
0
mirror of https://github.com/mintycube/dotfiles.git synced 2024-10-22 12:05:41 +00:00
2024-04-23 07:46:41 +05:00

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)"