This commit is contained in:
Clay Gomera 2023-06-24 17:25:21 -04:00
parent ac07e170ec
commit 0d8a88efca
4 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {"Symbols Nerd Font Mono:size=12", "mononoki Nerd Font:size=12"};
static const char *fonts[] = {"Symbols Nerd Font Mono:size=10", "mononoki Nerd Font:size=12"};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */

View file

@ -5,7 +5,7 @@
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake) ##
## /_____/_/ \__,_/_/|_|\___/ My custom dwm build ##
lxpolkit &
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
dwmblocks &
sh "$HOME"/.fehbg &
unclutter --hide-on-touch &

View file

@ -86,10 +86,10 @@ for battery in /sys/class/power_supply/BAT?*; do
fi
;;
"Not charging")
status=" 󰂃"
echo " 󰂃 " && exit 0
;;
"Unknown")
status=" 󰂃"
echo " 󰂃 " && exit 0
;;
*) exit 1 ;;
esac

View file

@ -1,6 +1,6 @@
#!/bin/bash
# Prints the current volume or 🔇 if muted.
[ "$(pamixer --get-mute)" = true ] && echo "󰕿x" && exit
[ "$(pamixer --get-mute)" = true ] && echo " 󰖁 " && exit
vol="$(pamixer --get-volume)"
if [ "$vol" -gt "50" ]; then
icon="󰕾"
@ -9,6 +9,6 @@ elif [ "$vol" -gt "10" ]; then
elif [ "$vol" -gt "0" ]; then
icon="󰕿"
else
echo "󰕿x" && exit
echo " 󰖁 " && exit
fi
echo -e " $icon $vol% "