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
704 B
33 lines
704 B
#!/bin/bash
|
|
|
|
FONT="Droid Sans Mono"
|
|
ICONFONT="Noto Color Emoji"
|
|
FONTSIZE="10"
|
|
|
|
declare -A POLYBAR
|
|
POLYBAR=(\
|
|
[modulesleft]="i3" \
|
|
[modulescenter]="" \
|
|
[modulesright]="eth wifi cpu memory volume batteryemoji time date xkeyboard" \
|
|
[textoffset]="2" \
|
|
[iconfontscale]="8" \
|
|
[antialias]="true" \
|
|
[bottom]="false" \
|
|
[height]="32" \
|
|
[i3label]="%icon%" \
|
|
[wifidev]="wlp3s0" \
|
|
[wifiicon]="📡" \
|
|
[ethdev]="enp2s0" \
|
|
[ethicon]="🔌" \
|
|
[cpuicon]="💻" \
|
|
[ramicon]="🧠" \
|
|
[dateicon]="📅" \
|
|
[timeicon]="🕖" \
|
|
[volumeicon]="🔊" \
|
|
[muteicon]="🔈" \
|
|
[layouticon]="⌨️" \
|
|
[chargingicon]="🔋⬆️" \
|
|
[fullicon]="🔋" \
|
|
[dischargingicon]="🔋⬇️" \
|
|
)
|