diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-08-30 19:22:59 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-08-30 19:22:59 +0200 |
| commit | 19120d4f9761c67d99ed1ce3da6084b83f5a49c9 (patch) | |
| tree | f234cad1bdad88114a63c9702144da487024967a /.local/bin/control-center | |
| parent | 5928998af5404ae2be84c6cecc10ebf84bd3f3ed (diff) | |
| download | dotfiles-19120d4f9761c67d99ed1ce3da6084b83f5a49c9.tar.gz dotfiles-19120d4f9761c67d99ed1ce3da6084b83f5a49c9.zip | |
Linux-specific dotfiles
Diffstat (limited to '.local/bin/control-center')
| -rwxr-xr-x | .local/bin/control-center | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.local/bin/control-center b/.local/bin/control-center deleted file mode 100755 index d0b3320..0000000 --- a/.local/bin/control-center +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -LOCK_FILE="$HOME/.cache/eww-control-center.lock" -EWW_BIN="$HOME/.local/bin/eww" -ACTIVE_PLAYERS=$(playerctl -l | head -n 1) - -run() { - ${EWW_BIN} open control-center - sleep 0.2 - xdo raise -N eww-bar - ${EWW_BIN} update ccenter=true - - sleep 1 && [[ ! -z "$ACTIVE_PLAYERS" ]] && ${EWW_BIN} update mp=true -} - -# Run eww daemon if not running -if [[ ! `pidof eww` ]]; then - ${EWW_BIN} daemon - sleep 1 -else - if [[ ! -f "$LOCK_FILE" ]]; then - touch "$LOCK_FILE" - run - else - [[ ! -z "$ACTIVE_PLAYERS" ]] && ${EWW_BIN} update mp=false && sleep 0.4 - ${EWW_BIN} update ccenter=false - sleep 0.6 - ${EWW_BIN} close control-center - rm "$LOCK_FILE" - fi -fi |
