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.

43 lines
1023 B

#!/bin/bash
5 years ago
FONT="Iosevka"
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"
5 years ago
ICONFONT="Noto Color Emoji"
FONTSIZE="14"
5 years ago
TERMINAL="alacritty"
5 years ago
declare -A POLYBAR
POLYBAR=(\
[modulesleft]="i3" \
[modulescenter]="" \
[modulesright]="eth wifi cpu memory volume batteryemoji time date xkeyboard" \
[textoffset]="3" \
5 years ago
[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]="🔋⬇️" \
)