Hyprland-dotfiles/eww/ml4w-sidebar/launch.sh

17 lines
403 B
Bash
Raw Normal View History

2024-04-20 11:57:31 -04:00
#!/bin/bash
FILE="$HOME/.cache/ml4w_sidebar"
CFG="$HOME/dotfiles/eww/ml4w-sidebar"
EWW=`which eww`
if [[ ! `pidof eww` ]]; then
${EWW} daemon
sleep 0.5
fi
if [[ ! -f "$FILE" ]]; then
touch "$FILE"
${EWW} --config "$CFG" open-many ml4wlauncher resources logout suspend lock reboot shutdown
else
${EWW} --config "$CFG" close resources ml4wlauncher logout suspend lock reboot shutdown
rm "$FILE"
fi