dotfiles/.local/bin/desktop_click

10 lines
135 B
Plaintext
Raw Normal View History

2024-04-23 04:34:15 +02:00
#!/bin/bash
# Check if dmenu is running
dunstctl close-all
if pgrep -x "dmenu" > /dev/null; then
killall dmenu;
else
dmenu_hub
fi