mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check if dmenu is running
|
|
dunstctl close-all
|
|
if pgrep "dmenu" > /dev/null; then
|
|
killall dmenu;
|
|
else
|
|
dmenu_hub
|
|
fi
|