8 lines
227 B
Bash
8 lines
227 B
Bash
|
#!/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
|