summaryrefslogtreecommitdiff
path: root/polybar/config.ini
diff options
context:
space:
mode:
Diffstat (limited to 'polybar/config.ini')
-rw-r--r--polybar/config.ini78
1 files changed, 78 insertions, 0 deletions
diff --git a/polybar/config.ini b/polybar/config.ini
new file mode 100644
index 0000000..5aa12ac
--- /dev/null
+++ b/polybar/config.ini
@@ -0,0 +1,78 @@
+;; ___ _ _
+;; / _ \___ | |_ _| |__ __ _ _ __
+;; / /_)/ _ \| | | | | '_ \ / _` | '__|
+;; / ___/ (_) | | |_| | |_) | (_| | |
+;; \/ \___/|_|\__, |_.__/ \__,_|_|
+;; |___/
+;; https://github.com/b4skyx/dotfiles
+
+
+;-------------------------
+;; Imports
+include-file = ~/.config/polybar/colors.ini
+include-file = ~/.config/polybar/modules.ini
+
+;-------------------------
+[global/wm]
+; margin-top = 5
+; margin-bottom = 5
+
+;-------------------------
+
+[settings]
+screenchange-reload = true
+pseudo-transparency = false
+
+;-------------------------
+
+[bar/main]
+monitor =
+width = 100%
+height = 32
+fixed-center = true
+override-redirect = true
+wm-restack = bspwm
+bottom = false
+
+background = ${colors.background}
+foreground = ${colors.foreground}
+
+line-size = 2
+line-color = #00000000
+
+border-size = 0
+border-bottom-size = 1
+border-color = ${colors.border}
+
+padding-left = 0
+padding-right = 1
+
+font-0 = FiraSans:pixelsize=11;2
+font-1 = Symbols Nerd Font:pixelsize=12;1
+
+modules-left = launcher bspwm xwindow
+modules-center = date time
+modules-right = xkeyboard pulseaudio network battery powercontrol
+
+tray-position = right
+tray-detached = false
+tray-maxsize = 16
+tray-offset-x = 0
+tray-offset-y = 0
+tray-padding = 3
+tray-scale = 1.0
+
+enable-ipc = true
+
+;-------------------------
+
+[bar/secondary]
+
+# Show systray only on first monitor
+
+inherit = bar/main
+
+monitor = DP-1
+tray-position = right
+
+;-------------------------