#!/bin/bash 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" ICONFONT="Noto Color Emoji" FONTSIZE="11" TERMINAL="kitty" 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]="🔋⬇️" \ )