7 lines
227 B
Bash
Executable file
7 lines
227 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
pgrep -f 'panel_text' | xargs -n1 kill -9
|
|
pgrep -f 'lemonbar' | xargs -n1 kill -9
|
|
pgrep -f 'xobpipe' | xargs -n1 kill -9
|
|
pgrep -f 'trayer' | xargs -n1 kill -9
|
|
pgrep -f 'bash.*panel\.sh' | xargs -n1 kill -9
|