From f596aaa31a84c7937f408b120b8109a4017c6c32 Mon Sep 17 00:00:00 2001 From: Vlad Doster Date: Wed, 1 Jan 2020 10:51:40 -0500 Subject: [PATCH] Fixing polybar --- .config/i3/config | 3 +-- .config/polybar/launch.sh | 12 ------------ 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100755 .config/polybar/launch.sh diff --git a/.config/i3/config b/.config/i3/config index 6059f3fe..3d928fe4 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -34,7 +34,7 @@ for_window [instance="dropdown_*"] move position center # modifier None #} -exec_always --no-startup-id $HOME/.config/polybar/launch.sh +exec_always --no-startup-id $HOME/.local/bin/launch_polybar # #---Basic Bindings---# # bindsym $mod+Shift+Return exec --no-startup-id samedir @@ -194,4 +194,3 @@ bindsym $mod+Shift+Left move left bindsym $mod+Shift+Down move down bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right -exec_always --no-startup-id notify-send -i ~/.local/share/larbs/larbs.png 'Welcome to LARBS:' 'Press Super+F1 for the manual.' -t 10000 diff --git a/.config/polybar/launch.sh b/.config/polybar/launch.sh deleted file mode 100755 index 2de76cb4..00000000 --- a/.config/polybar/launch.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# Terminate already running bar instances -killall -q polybar - -# Wait until the processes have been shut down -while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done - -# Launch Polybar, using default config location ~/.config/polybar/config -polybar mybar & - -echo "Polybar launched..."