summaryrefslogtreecommitdiff
path: root/config/polybar
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2025-03-17 22:54:39 +0000
committerdavidovski <david@davidovski.xyz>2025-03-17 22:54:39 +0000
commitb3b4975df588e7c71bebb3cd7f4e83fd7a70b983 (patch)
treeae01e2115993946c5841aaf0c810a26476c2fa8e /config/polybar
parent6c1de1e807d39883c975933c4c35b91f1df88fd6 (diff)
floating little bars and rounded borders
Diffstat (limited to 'config/polybar')
-rw-r--r--config/polybar/config118
-rwxr-xr-xconfig/polybar/launch.sh6
2 files changed, 88 insertions, 36 deletions
diff --git a/config/polybar/config b/config/polybar/config
index f3a2f6e..88f1d26 100644
--- a/config/polybar/config
+++ b/config/polybar/config
@@ -4,7 +4,6 @@ offsety = 24
[color]
bg = #191919
-bga = #C0191919
fg4= #f58d44
fg2 = #5f819d
fg3 = #707880
@@ -22,34 +21,73 @@ font-3 = mononoki:style=Regular:pixelsize=11;3
font-4 = MesloLGM Nerd Font Mono:style=Regular:pixelsize=14;2
font-5 = Noto Sans Mono CJK TC:style=Medium,Regular;pixelsize=10;2
-height = 25
-background = ${color.bga}
+height = 32
module-margin = 1
wm-restack = bspwm
radius = 0
-foreground = ${color.fg1}
+background = ${color.bg}
+border-size = 0
+border-color = ${color.fg3}
+fg = ${color.fg1}
+offset-y = 16
padding-right = 1
-[bar/wsonly]
+[bar/time]
inherit = bar/base
-width = 100%
-modules-left = workspaces
-modules-right = time
+modules-center = time
+width = 80
+
+[bar/time1920]
+inherit = bar/time
+offset-x = 1798
+
+[bar/time1080]
+inherit = bar/time
+offset-x = 958
+
+[bar/time2560]
+inherit = bar/time
+offset-x = 2438
[bar/ws]
inherit = bar/base
-width = 2510
-offset-x = 25
-offset-y = 10
-modules-left = workspaces xwindow
-modules-right = mpd temperature memory network battery pulseaudio microphone time
+width = 245
+offset-x = 32
+modules-left = workspaces
tray-position = right
-background = ${color.bga}
-border-size = 0
-border-color = ${color.fg3}
-fg = ${color.fg1}
+
+[bar/right]
+inherit = bar/base
+width = 400
+modules-center = temperature memory network battery pulseaudio vpn microphone time
+tray-position = right
+
+[bar/mpd]
+inherit = bar/base
+width = 250
+fixed-center = true
+modules-right = mpdctrls
+modules-left = mpdsong
+padding = 2
+
+[bar/right2560]
+inherit = bar/right
+offset-x = 2118
+
+[bar/mpd2560]
+inherit = bar/mpd
+offset-x = 1836
+
+[bar/right1920]
+inherit = bar/right
+offset-x = 1478
+
+[bar/mpd1920]
+inherit = bar/mpd
+offset-x = 1046
+
[module/wsnumber]
@@ -75,16 +113,16 @@ enable-click = true
enable-scroll = true
format = <label-state>
-format-padding = 0
-label-monitor = %name%
-label-active = %{T2}雷%{T-}
-label-active-padding = 1
+format-padding = 0
+label-monitor = %name%
+label-active = %{T2}雷%{T-}
+label-active-padding = 1
label-occupied = %{T2}ﲭ%{T-}
label-occupied-padding = 1
label-empty = %{T2}ﱤ%{T-}
label-empty-padding = 1
-label-urgent = %{T2}ﲭ%{T-}
-label-urgent-padding = 1
+label-urgent = %{T2}ﲭ%{T-}
+label-urgent-padding = 1
[module/time]
@@ -95,15 +133,25 @@ date = "%d %b"
label = %{T2}◷%{T-} %time%
label-padding = 0
-[module/mpd]
+[module/mpdctrls]
type = internal/mpd
host = 127.0.0.1
port = 6600
+format-online = <icon-prev> <toggle> <icon-next>
-format-online = <label-song> <icon-prev> <toggle> <icon-next> <bar-progress>
-label-song = %title%
+icon-play = 
+icon-pause = 
+icon-prev = 
+icon-next = 
-bar-progress-width = 12
+[module/mpdprogress]
+type = internal/mpd
+host = 127.0.0.1
+port = 6600
+
+format-online = <bar-progress>
+
+bar-progress-width = 13
bar-progress-indicator = |
bar-progress-fill = ─
bar-progress-empty = ─
@@ -112,14 +160,13 @@ format-online-padding = 0
format-offline-padding = 0
-label-song-maxlen = 80
-label-song-ellipsis = true
-
-icon-play = 
bar-empty = ─
-icon-pause = 
-icon-prev = 
-icon-next = 
+
+[module/mpdsong]
+type = custom/script
+exec = ~/.scripts/mpd-zscroll
+tail = true
+interval = 0.3
[module/pulseaudio]
@@ -203,5 +250,6 @@ format-disconnected = <label-disconnected>
format-packetloss = <label-connected>
-label-connected = 
+label-connected = 
+label-disconnected =
diff --git a/config/polybar/launch.sh b/config/polybar/launch.sh
index 33b6531..a8d55f3 100755
--- a/config/polybar/launch.sh
+++ b/config/polybar/launch.sh
@@ -15,7 +15,11 @@ polybar -m | while read -r mon; do
export MONITOR=$(echo $mon | cut -d: -f1)
echo $mon | grep -q "(primary)" && {
polybar ws &
+
+ polybar right2560 &
+ polybar mpd2560 &
} || {
- polybar wsonly &
+ polybar ws &
+ polybar time1080 &
}
done