diff options
| author | Peter Son Struschka <me@peter-struschka.com> | 2019-05-11 15:53:16 +0700 |
|---|---|---|
| committer | Peter Son Struschka <me@peter-struschka.com> | 2019-05-11 15:53:16 +0700 |
| commit | 5bca040f13556d13b80a91a43b0b88ca9c21b218 (patch) | |
| tree | efdc704586f382f4bdb2baa2cc6f4f353b717f1d /i3wm/.config/polybar | |
| parent | c4f5fd984a863aa284de476e3ef6515affa7eb49 (diff) | |
| download | dotfiles-5bca040f13556d13b80a91a43b0b88ca9c21b218.tar.gz dotfiles-5bca040f13556d13b80a91a43b0b88ca9c21b218.tar.bz2 dotfiles-5bca040f13556d13b80a91a43b0b88ca9c21b218.tar.lz dotfiles-5bca040f13556d13b80a91a43b0b88ca9c21b218.tar.xz dotfiles-5bca040f13556d13b80a91a43b0b88ca9c21b218.tar.zst dotfiles-5bca040f13556d13b80a91a43b0b88ca9c21b218.zip | |
update makefile and configs
Diffstat (limited to 'i3wm/.config/polybar')
| -rw-r--r-- | i3wm/.config/polybar/config | 20 | ||||
| -rwxr-xr-x | i3wm/.config/polybar/launch.sh | 5 |
2 files changed, 13 insertions, 12 deletions
diff --git a/i3wm/.config/polybar/config b/i3wm/.config/polybar/config index 07b9d8e..419ff49 100644 --- a/i3wm/.config/polybar/config +++ b/i3wm/.config/polybar/config @@ -30,7 +30,8 @@ alert = #bd2c40 [bar/topbar] monitor = ${env:MONITOR:eDP-1} width = 100% -height = 30 +height = 40 +dpi = 156 ;offset-x = 1% ;offset-y = 1% radius = 6.0 @@ -80,7 +81,8 @@ modules-right = filesystem backlight pulseaudio xkeyboard memory cpu wlan eth et [bar/topbar-second] monitor = ${env:MONITOR:eDP-1} width = 100% -height = 30 +height = 40 +dpi = 156 ;offset-x = 1% ;offset-y = 0 radius = 6.0 @@ -138,11 +140,11 @@ tail = true format = <label> format-foreground = ${colors.foreground-alt} format-underline = ${colors.primary} -click-right = xte 'key XF86AudioPlay' -click-left = xte 'key XF86AudioPlay' -click-middle = xte 'key XF86AudioNext' -scroll-up = xte 'key XF86AudioNext' -scroll-down = xte 'key XF86AudioPrev' +click-right = playerctl play-pause +click-left = playerctl play-pause +click-middle = playerctl next +scroll-up = playerctl next +scroll-down = playerctl previous label-maxlen = 120 label-ellipsis = true @@ -333,7 +335,7 @@ label = %percentage_used%% [module/wlan] type = internal/network -interface = wlp3s0 +interface = wlp13s0 interval = 3.0 accumulate-stats = true @@ -353,7 +355,7 @@ ramp-signal-foreground = ${colors.foreground-alt} [module/eth] type = internal/network -interface = enp0s31f6 +interface = eno1 interval = 3.0 accumulate-stats = true diff --git a/i3wm/.config/polybar/launch.sh b/i3wm/.config/polybar/launch.sh index e099ebb..c45e085 100755 --- a/i3wm/.config/polybar/launch.sh +++ b/i3wm/.config/polybar/launch.sh @@ -9,12 +9,11 @@ while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done # Launch bar1 and bar2 MONITOR=$(polybar -m|tail -n1|sed -e 's/:.*$//g') polybar topbar & - +sleep 1 MONITORS=$(polybar -m|sed -e 's/:.*$//g') while read -r monitor; do MONITOR=$monitor polybar topbar-second & + sleep 1 done <<< $MONITORS -PRIMARY_MONITOR=$(xrandr -q|awk '/ connected primary /'|cut -d ' ' -f1) - echo "Bars launched..." |
