diff options
| author | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
| commit | 1b6a3d5b6d3f25fa5f57eae3ef31215229d2f440 (patch) | |
| tree | 99f92ab2f07bf1b073d6d8af4d857e707acc7e9e /.config/i3 | |
| parent | 5bc521dcd5a8013fadeb2a9456155be39799360d (diff) | |
Fix polybar not launching
Diffstat (limited to '.config/i3')
| -rw-r--r-- | .config/i3/config | 3 | ||||
| -rw-r--r-- | .config/i3/polybar.sh | 10 |
2 files changed, 2 insertions, 11 deletions
diff --git a/.config/i3/config b/.config/i3/config index 5487258..2218c04 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -12,7 +12,8 @@ exec --no-startup-id dex --autostart --environment i3 exec --no-startup-id setxkbmap -option caps:super exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork exec --no-startup-id nm-applet -exec_always --no-startup-id ~/.config/i3/polybar.sh +exec --no-startup-id nitrogen --restore +exec_always --no-startup-id sh ~/.config/polybar/launch.sh set $refresh_i3status killall -SIGUSR1 i3status bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status diff --git a/.config/i3/polybar.sh b/.config/i3/polybar.sh deleted file mode 100644 index 22d2fbc..0000000 --- a/.config/i3/polybar.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env sh - -# Terminate already running bar instances -killall -q polybar - -# Wait until the processes have been shut down -while pgrep -x polybar >/dev/null; do sleep 1; done - -# Launch polybar -polybar & |
