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