aboutsummaryrefslogtreecommitdiffstats
path: root/.config/polybar/theme.ini
diff options
context:
space:
mode:
Diffstat (limited to '.config/polybar/theme.ini')
-rw-r--r--.config/polybar/theme.ini151
1 files changed, 151 insertions, 0 deletions
diff --git a/.config/polybar/theme.ini b/.config/polybar/theme.ini
new file mode 100644
index 0000000..2f25629
--- /dev/null
+++ b/.config/polybar/theme.ini
@@ -0,0 +1,151 @@
+# My whole right side is pretty broken but I don't really care.
+[colors]
+background = #3b4252
+background-alt = #3b4252
+foreground = #d8dee9
+
+red = #bf616a
+green = #a3be8c
+yellow = #ebcb8b
+
+[bar/main]
+;width = 17%
+height = 35
+fixed-center = true
+override-redirect = true
+background = #00000000
+foreground = ${colors.foreground}
+line-color = ${colors.yellow}
+border-size = 0
+border-color = #00000000
+module-margin-left = 1
+module-margin-right = 1
+font-0 = JetBrainsMono Nerd Font:size=10;1
+cursor-click = pointer
+cursor-scroll = ns-resize
+modules-left = bspwm
+modules-center = date
+;modules-right = spotify pulseaudio backlight battery wireless-network wired-network
+modules-right = bsd-bat
+padding-right = 2
+
+[module/spotify]
+type = custom/script
+interval = 1
+format-prefix = " "
+format-prefix-foreground = ${colors.yellow}
+format = <label>
+tail = true
+exec = /home/cameron/.config/polybar/scripts/scroll.sh
+
+[module/bspwm]
+ws-icon-default = 
+ws-icon-0 = one; 1
+ws-icon-1 = two; 2
+ws-icon-2 = three; 3
+ws-icon-3 = four; 4
+ws-icon-4 = five; 5
+ws-icon-5 = six; 6
+ws-icon-6 = seven; 7
+ws-icon-7 = eight; 8
+ws-icon-8 = nine; 9
+ws-icon-9 = zero; 0
+
+format = <label-state> <label-mode>
+label-monitor = %name%
+
+type = internal/bspwm
+
+label-focused = "%icon%"
+label-focused-foreground = ${colors.red}
+label-focused-padding = 1
+
+label-occupied = "%icon%"
+label-occupied-foreground = ${colors.yellow}
+label-occupied-padding = 1
+
+label-urgent = "%icon%"
+label-urgent-background = ${colors.red}
+label-nrgent-padding = 1
+
+label-empty = "%icon%"
+label-empty-foreground = ${colors.foreground}
+label-empty-padding = 1
+
+[module/date]
+type = internal/date
+interval = 5
+date = %m/%d/%Y
+time = %I:%M
+format-prefix-foreground = ${colors.yellow}
+format-prefix = " "
+label = " %time% %date%"
+
+[module/pulseaudio]
+type = internal/pulseaudio
+format-volume = <label-volume>
+label-volume = " %percentage%%"
+format-volume-prefix = 
+label-volume-foreground = ${colors.foreground}
+format-volume-prefix-foreground = ${colors.yellow}
+
+format-muted = <label-muted>
+label-muted = ""
+label-muted-foreground = ${colors.red}
+
+[module/battery]
+type = internal/battery
+battery = BAT0
+adapter = AC
+full-at = 98
+
+format-charging = "<animation-charging> <label-charging>"
+format-discharging = "<ramp-capacity> <label-discharging>"
+
+animation-charging-0 = 
+animation-charging-1 = 
+animation-charging-2 = 
+animation-charging-3 = 
+animation-charging-4 = 
+animation-charging-foreground = ${colors.green}
+
+ramp-capacity-0 = 
+ramp-capacity-1 = 
+ramp-capacity-2 = 
+ramp-capacity-3 = 
+ramp-capacity-4 = 
+ramp-capacity-foreground = ${colors.green}
+
+[module/bsd-bat]
+type = custom/script
+exec = sysctl -n hw.acpi.battery.life
+interval = 50
+format =  <label>%
+format-foreground = ${colors.green}
+
+[module/wired-network]
+type = internal/network
+interface = enp7s0
+accumulate-stats = true
+label-connected = " "
+label-disconnected = " "
+
+[module/wireless-network]
+type = internal/network
+interface = wlp0s20f3
+accumulate-stats = true
+label-connected = "%essid% 直"
+label-disconnected = "睊"
+
+[module/backlight]
+type = internal/backlight
+card = intel_backlight
+format-prefix-foreground = ${colors.yellow}
+format-prefix = " "
+
+[settings]
+screenchange-reload = true
+
+[global/wm]
+margin-top = 5
+margin-bottom = 5