1
0
mirror of https://github.com/mintycube/dotfiles.git synced 2024-10-22 12:05:41 +00:00
2024-06-08 09:14:08 +05:00

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