mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
7 lines
215 B
Bash
Executable file
7 lines
215 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ -n $(xdotool search --class bar_system_status_indicator) ]]; then
|
|
xdotool search --class bar_system_status_indicator windowkill &
|
|
else
|
|
termite --class bar_system_status_indicator -e "$1" &
|
|
fi
|