Compare commits

...

2 commits

Author SHA1 Message Date
afonsofrancof
f6b77a9118 Icon fixes 2022-11-01 01:13:27 +00:00
afonsofrancof
59716d53ef Added baterry level 2022-11-01 00:48:17 +00:00
5 changed files with 78 additions and 10 deletions

View file

@ -0,0 +1,64 @@
#!/bin/bash
batLevel=$(acpi --battery | grep -Po '(\d+)\%' | sed 's/%//')
charging=$(acpi --ac-adapter | grep -Po '(off-line|on-line)')
if [ $batLevel -le 20 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=4> </fn>"
fi
elif [ $batLevel -le 30 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=4> </fn>"
fi
elif [ $batLevel -le 40 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=3> </fn>"
fi
elif [ $batLevel -le 60 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=4> </fn>"
fi
elif [ $batLevel -le 80 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=4> </fn>"
fi
elif [ $batLevel -le 95 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=4> </fn>"
fi
elif [ $batLevel -g 95 ];
then
if [ $charging == "on-line" ];
then
echo "<fn=3> </fn>"
else
echo "<fn=4> </fn>"
fi
fi

View file

@ -15,4 +15,4 @@ do
fi
done
echo "<fc=$COLOR><fn=4>$ICON</fn></fc>"
echo "<fc=$COLOR><fn=3>$ICON</fn></fc>"

View file

@ -5,7 +5,7 @@ STATES=($(nmcli device show | grep "GENERAL.STATE" | awk '{print $3}'))
for ((i = 0; i < "${#TYPES[@]}"; i++)); do
if [[ ${STATES[$i]} = "(connected)" ]]; then
if [[ ${TYPES[$i]} == *"wifi"* ]]; then
echo "<fc=#DFDFDF><fn=4>直</fn></fc>"
echo "<fc=#DFDFDF><fn=3>直</fn></fc>"
else
echo "<fc=#DFDFDF><fn=5>ﯱ</fn></fc>"
fi

View file

@ -3,9 +3,9 @@ MUTE=$(pactl get-sink-mute @DEFAULT_SINK@ | sed -En 's/Mute: (.)/\1/p')
VOLUME=$(pactl get-sink-volume @DEFAULT_SINK@ | grep -Po '[0-9]*%' | sed -En 's/(.)\%/\1/p' | head -n1)
if [ "$MUTE" = "yes" ]; then
echo "<fc=#696B71><fn=3></fn></fc>"
elif [ "$VOLUME" -eq 0 ]; then
echo "<fc=#696B71><fn=3></fn></fc>"
echo "<fc=#696B71><fn=3></fn></fc>"
elif [ "$VOLUME" -le 20 ]; then
echo "<fc=#DFDFDF><fn=3>奔</fn><fn=2> $VOLUME</fn></fc>"
else
echo "<fc=#DFDFDF><fn=3></fn><fn=2> $VOLUME</fn></fc>"
echo "<fc=#DFDFDF><fn=3></fn><fn=2> $VOLUME</fn></fc>"
fi

View file

@ -7,10 +7,10 @@
Config {font = "xft:Ubuntu:weight=bold:pixelsize=14:antialias=true:hinting=true"
, additionalFonts =
[ "xft:Font Awesome 6 Free Solid:pixelsize=14"
, "xft:Font Awesome 6 Free Solid:pixelsize=12:bold"
, "xft:Font Awesome 6 Free Solid:pixelsize=16"
, "xft:Hack Nerd Font Mono:pixelsize=21"
, "xft:Hack Nerd Font Mono:pixelsize=25"
, "xft:Font Awesome 6 Free Solid:pixelsize=13:bold"
, "xft:FiraCode Nerd Font Mono:pixelsize=21"
, "xft:FiraCode Nerd Font Mono:pixelsize=14"
, "xft:Font Awesome 6 Free Solid:pixelsize=21"
]
, bgColor = "#2B2E37"
, fgColor = "#929AAD"
@ -34,6 +34,7 @@ Config {font = "xft:Ubuntu:weight=bold:pixelsize=14:antialias=true:hinting=true"
, Run Com "/home/afonso/.config/xmobar/scripts/volume.sh" [] "volume" 10
, Run Com "/home/afonso/.config/xmobar/scripts/bluetooth.sh" [] "bluetooth" 10
, Run Com "/home/afonso/.config/xmobar/scripts/network.sh" [] "network" 10
, Run Com "/home/afonso/.config/xmobar/scripts/battery.sh" [] "battery" 20
, Run Com "/home/afonso/.config/xmobar/scripts/trayer-padding-icon.sh" [] "trayerpad" 20
]
, sepChar = "%"
@ -57,12 +58,15 @@ Config {font = "xft:Ubuntu:weight=bold:pixelsize=14:antialias=true:hinting=true"
\ \
\|\
\ \
\ \
\%network%\
\ \
\%bluetooth%\
\ \
\%volume%\
\ \
\%battery%\
\ \
\|\
\%trayerpad%"
}