xsel, locker update, font config & polybar multi-monitor

This commit is contained in:
Tristaan
2018-01-20 15:02:36 +01:00
parent c1260453a1
commit 03870463e6
8 changed files with 17 additions and 9 deletions

View File

@@ -23,7 +23,7 @@ exec xmodmap ~/.i3/custom.map
# US brackets on slovene special characters
#exec xmodmap ~/.i3/custom.map
font pango: FontAwesome, xos4 Terminess Powerline 12
font pango: FontAwesome, xos4 Terminus 12
#--APPEARANCE--#

View File

@@ -1,7 +1,8 @@
#!/bin/sh
ARGS=(
"--clock" "-s"
"-i${HOME}/Pictures/bg_1440p/Linux-Wallpapers-19-2560-x-1920.png"
# "-i${HOME}/Pictures/bg_1440p/Linux-Wallpapers-19-2560-x-1920.png"
"-i${HOME}/Pictures/backgrounds/0c7e1f_5775038.jpg"
"--insidevercolor=35d75588"
"--insidewrongcolor=d7355588"
"--insidecolor=50505000"

View File

@@ -6,7 +6,13 @@ killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
polybar top &
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload top &
done
else
polybar --reload top &
fi
echo "Bars launched..."