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.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
FONT="Iosevka Term"
|
|
|
|
FONTSTYLE="Medium"
|
|
|
|
FONTBOLDSTYLE="Bold"
|
|
|
|
FONTITALICSTYLE="Oblique"
|
|
|
|
FONTBOLDITALICSTYLE="$FONTBOLDSTYLE $FONTITALICSTYLE"
|
|
|
|
FONTNORMAL="$FONT $FONTSTYLE"
|
|
|
|
FONTITALIC="$FONT $FONTSTYLE $FONTITALICSTYLE"
|
|
|
|
FONTBOLD="$FONT $FONTSTYLE $FONTBOLDSTYLE"
|
|
|
|
FONTBOLDITALIC="$FONT $FONTSTYLE $FONTBOLDSTYLE $FONTITALICSTYLE"
|
|
|
|
ICONFONT="Noto Color Emoji"
|
|
|
|
FONTSIZE="11"
|
|
|
|
|
|
|
|
TERMINAL="alacritty"
|
|
|
|
|
|
|
|
declare -A POLYBAR
|
|
|
|
POLYBAR=(\
|
|
|
|
[modulesleft]="i3" \
|
|
|
|
[modulescenter]="" \
|
|
|
|
[modulesright]="eth wifi cpu memory volume batteryemoji time date xkeyboard" \
|
|
|
|
[textoffset]="3" \
|
|
|
|
[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]="🔋⬇️" \
|
|
|
|
)
|