You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
641 B
33 lines
641 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
FONT="Dina"
|
||
|
ICONFONT="Siji"
|
||
|
FONTSIZE="8"
|
||
|
|
||
|
declare -A POLYBAR
|
||
|
POLYBAR=(\
|
||
|
[modulesleft]="i3" \
|
||
|
[modulescenter]="cpu memory" \
|
||
|
[modulesright]="eth wifi volume battery time date xkeyboard" \
|
||
|
[textoffset]="2" \
|
||
|
[iconfontscale]="1" \
|
||
|
[antialias]="false" \
|
||
|
[bottom]="true" \
|
||
|
[height]="28" \
|
||
|
[i3label]="%icon%" \
|
||
|
[wifidev]="wlp3s0" \
|
||
|
[wifiicon]="" \
|
||
|
[ethdev]="enp2s0" \
|
||
|
[ethicon]="" \
|
||
|
[cpuicon]="CPU:" \
|
||
|
[ramicon]="RAM:" \
|
||
|
[dateicon]="" \
|
||
|
[timeicon]="" \
|
||
|
[volumeicon]="" \
|
||
|
[muteicon]="" \
|
||
|
[layouticon]="" \
|
||
|
[chargingicon]="" \
|
||
|
[fullicon]="" \
|
||
|
[dischargingicon]="" \
|
||
|
)
|