diff options
| author | 2026-04-17 10:54:01 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:54:01 +0100 | |
| commit | 5252d5e19e0397a93c9686698961c9e9754370fe (patch) | |
| tree | 160b98301d77852af60e6aff1986fb85c81646dd /home/.local/bin/launch-polybar | |
| parent | 48121c013af862be9daca4757beb93f97e021163 (diff) | |
| download | dotfiles-5252d5e19e0397a93c9686698961c9e9754370fe.tar.gz dotfiles-5252d5e19e0397a93c9686698961c9e9754370fe.tar.bz2 dotfiles-5252d5e19e0397a93c9686698961c9e9754370fe.zip | |
chore: remove X11-only scripts replaced by sway/wayland
- input-setup: replaced by sway input blocks
- display-setup: replaced by sway output config + display-toggle.sh
- launch-polybar: replaced by waybar
- locknpause: replaced by swaylock
- vibe: removed (xclip + xdotool, no wayland use case)
- automute: removed (xdotool focus tracking, no wayland use case)
Diffstat (limited to 'home/.local/bin/launch-polybar')
| -rwxr-xr-x | home/.local/bin/launch-polybar | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/home/.local/bin/launch-polybar b/home/.local/bin/launch-polybar deleted file mode 100755 index c670e56..0000000 --- a/home/.local/bin/launch-polybar +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env sh -# shellcheck source=/dev/null -[ -r ~/.config/sh/envrc ] && . ~/.config/sh/envrc - -# Terminate already running bar instances -killall -q polybar -# If all your bars have ipc enabled, you can also use -# polybar-msg cmd quit - -# Launch bars -if command -v "xrandr" >/dev/null 2>&1; then - for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do - MONITOR=$m polybar --reload mybar >>/tmp/polybar.log 2>&1 & - done -else - polybar --reload mybar & -fi |
