summaryrefslogtreecommitdiffstats
path: root/.config/polybar/config.ini
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2022-10-18 09:08:09 +0200
committerjdlugosz963 <jdlugosz963@gmail.com>2022-10-18 09:08:09 +0200
commit747b37f09b2c1e92785fe8cb862706a818b2a55e (patch)
tree7725cfa2d2a29a536b79cb0b7f1b0686f3846921 /.config/polybar/config.ini
parente10991a690727c050d4d36d5ec229f7f14866743 (diff)
downloaddotfiles-747b37f09b2c1e92785fe8cb862706a818b2a55e.tar.gz
dotfiles-747b37f09b2c1e92785fe8cb862706a818b2a55e.zip
Add Polybar config
Diffstat (limited to '.config/polybar/config.ini')
-rw-r--r--.config/polybar/config.ini126
1 files changed, 126 insertions, 0 deletions
diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini
new file mode 100644
index 0000000..8e79a12
--- /dev/null
+++ b/.config/polybar/config.ini
@@ -0,0 +1,126 @@
1[settings]
2screenchange-reload = true
3pseudo-transparency = true
4
5[colors]
6background = #F20d1017
7background-alt = #131721
8foreground = #C5C8C6
9primary = #7fd962
10secondary = #bfbdb6
11alert = #A54242
12disabled = #707880
13
14[bar/example]
15width = 100%
16height = 18pt
17
18background = ${colors.background}
19foreground = ${colors.foreground}
20
21line-size = 1.5pt
22
23padding-left = 0
24padding-right = 1
25
26module-margin = 1
27
28separator = |
29separator-foreground = ${colors.disabled}
30
31font-0 = "sourcecodepro:size=11"
32font-1 = "FontAwesome"
33
34modules-left = xworkspaces
35modules-right = memory cpu battery date
36
37cursor-click = pointer
38cursor-scroll = ns-resize
39
40enable-ipc = true
41
42tray-position = right
43
44[module/xworkspaces]
45type = internal/xworkspaces
46
47icon-0 = 1;0
48icon-1 = 2;1
49icon-2 = 3;2
50icon-3 = 4;3
51icon-4 = 5;4
52icon-5 = 6;5
53icon-6 = 7;6
54icon-7 = 8;7
55icon-8 = 9;8
56icon-9 = 10;9
57
58label-active = %icon%
59label-active-background = ${colors.background-alt}
60label-active-underline= ${colors.primary}
61label-active-padding = 1
62
63label-occupied = %icon%
64label-occupied-padding = 1
65
66label-urgent = %icon%
67label-urgent-background = ${colors.alert}
68label-urgent-padding = 1
69
70label-empty = %icon%
71label-empty-foreground = ${colors.disabled}
72label-empty-padding = 1
73
74[module/battery]
75type = internal/battery
76battery = BAT0
77adapter = ADP1
78
79format-charging = <animation-charging> <label-charging>
80format-discharging = <ramp-capacity> <label-discharging>
81format-low = <ramp-capacity> <label-low>
82format-full = <ramp-capacity> <label-full>
83
84label-charging = %percentage%%
85label-discharging = %percentage%%
86label-low = LOW %percentage%%
87label-full = FULL %percentage%%
88
89ramp-capacity-0 = 
90ramp-capacity-1 = 
91ramp-capacity-2 = 
92ramp-capacity-3 = 
93ramp-capacity-4 = 
94ramp-capacity-foreground = ${colors.primary}
95
96animation-charging-0 = 
97animation-charging-1 = 
98animation-charging-2 = 
99animation-charging-3 = 
100animation-charging-4 = 
101animation-charging-foreground = ${colors.primary}
102animation-charging-framerate = 750
103
104[module/memory]
105type = internal/memory
106interval = 2
107format-prefix = "RAM "
108format-prefix-foreground = ${colors.primary}
109label = %percentage_used:2%%
110
111[module/cpu]
112type = internal/cpu
113interval = 2
114format-prefix = "CPU "
115format-prefix-foreground = ${colors.primary}
116label = %percentage:2%%
117
118[module/date]
119type = internal/date
120interval = 1
121
122date = %H:%M
123date-alt = %Y-%m-%d %H:%M:%S
124
125label = %date%
126label-foreground = ${colors.primary}