Update all dotfiles

This commit is contained in:
2025-05-22 17:56:05 -05:00
parent 0280a88a7b
commit 4bb042584b
1651 changed files with 60533 additions and 2672 deletions

View File

@ -0,0 +1,21 @@
#!/bin/bash
# __ __
# ___ __ _ ___ ____ ___ / /__ / /_
# / _ \/ ' \/ _ `/ _ \/ _ \/ / -_) __/
# /_//_/_/_/_/\_,_/ .__/ .__/_/\__/\__/
# /_/ /_/
#
if [[ "$1" == "stop" ]]; then
killall nm-applet
elif [[ "$1" == "toggle" ]]; then
if pgrep -x "nm-applet" > /dev/null
then
echo "Running"
killall nm-applet
else
echo "Stopped"
nm-applet --indicator &
fi
else
nm-applet --indicator &
fi