bin/dmenu (view raw)
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/sh
if [ $XDG_CURRENT_DESKTOP == "niri" ]; then
MONITOR=$(niri msg -j focused-output | jq -r '.name')
else
MONITOR=$(swaymsg -t get_outputs | jq -r '.[] | select(.focused==true).name')
fi
/usr/local/bin/dmenu-wl $* -nb '#2b3339' -nf '#d3c6aa' -sb '#d3c6aa' -sf '#212736' -i -m "$MONITOR" -fn 'DroidSansM Nerd Font'
exit $?
|