diff --git a/.config/wall.png b/.config/wall.png index 74f1c2db..ce7ff0e6 100644 Binary files a/.config/wall.png and b/.config/wall.png differ diff --git a/.scripts/statusbar/battery b/.scripts/statusbar/battery index 06506ac7..8da16189 100755 --- a/.scripts/statusbar/battery +++ b/.scripts/statusbar/battery @@ -4,8 +4,8 @@ battery="$(acpi -i)" case $BLOCK_BUTTON in - 1) pgrep -x dunst >/dev/null && notify-send "${battery}";; - 3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module: + 1) pgrep -x dunst >/dev/null && notify-send " " "${battery}";; + 3) pgrep -x dunst >/dev/null && notify-send " " "🔋 Battery module: 🔋: discharging 🛑: not charging ♻: stagnant charge diff --git a/.scripts/statusbar/clock b/.scripts/statusbar/clock index ab170048..87fdaf23 100755 --- a/.scripts/statusbar/clock +++ b/.scripts/statusbar/clock @@ -3,7 +3,7 @@ #date '+%Y %b %d (%a) %I:%M%p' date '+%I:%M%p' case $BLOCK_BUTTON in - 1) pgrep -x dunst >/dev/null && notify-send "$(cal --color=always | sed "s/..7m//;s/..27m/<\/span><\/b>/")" && notify-send "$(calcurse -D ~/.config/calcurse -d3)" ;; + 1) pgrep -x dunst >/dev/null && notify-send " " "$(cal --color=always | sed "s/..7m//;s/..27m/<\/span><\/b>/")" && notify-send "$(calcurse -D ~/.config/calcurse -d3)" ;; 2) "$TERMINAL" -e calcurse -D ~/.config/calcurse ;; 3) pgrep -x dunst >/dev/null && notify-send "📅 Time/date module: - Left click to show upcoming appointments for the next three days via \`calcurse -d3\` and show the month via \`cal\` diff --git a/.scripts/statusbar/cpu b/.scripts/statusbar/cpu index bb96afa9..6b169763 100755 --- a/.scripts/statusbar/cpu +++ b/.scripts/statusbar/cpu @@ -1,9 +1,9 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) notify-send "🖥 CPU hogs: + 1) notify-send " " "🖥 CPU hogs: $(ps axch -o cmd:15,%cpu --sort=-%cpu | head)" ;; - 3) notify-send "🖥 CPU module: + 3) notify-send " " "🖥 CPU module: - Shows CPU temperature. - Click to show intensive processes. - % is of single core." ;; diff --git a/.scripts/statusbar/disk b/.scripts/statusbar/disk index 3a123942..b4e7fab9 100755 --- a/.scripts/statusbar/disk +++ b/.scripts/statusbar/disk @@ -10,9 +10,9 @@ icon="$2" [ -z "$2" ] && icon="$1" case $BLOCK_BUTTON in - 1) pgrep -x dunst >/dev/null && notify-send "💽 Disk space: + 1) pgrep -x dunst >/dev/null && notify-send " " "💽 Disk space: $(df -h --output=target,used,size)" ;; - 3) pgrep -x dunst >/dev/null && notify-send "💽 Hard drive space remaining: + 3) pgrep -x dunst >/dev/null && notify-send " " "💽 Hard drive space remaining: - Shows used hard drive space. - Click to show all disk info." ;; esac diff --git a/.scripts/statusbar/help b/.scripts/statusbar/help index 21c84ce2..69fc36a3 100755 --- a/.scripts/statusbar/help +++ b/.scripts/statusbar/help @@ -2,7 +2,7 @@ case $BLOCK_BUTTON in 1) groff -mom ~/.readme.mom -Tpdf | zathura - ;; 2) i3 restart ;; - 3) pgrep -x dunst >/dev/null && notify-send "❓ Help module: + 3) pgrep -x dunst >/dev/null && notify-send " " "❓ Help module: - Left click to open LARBS guide. - Middle click to refresh i3.";; esac; echo "❓" diff --git a/.scripts/statusbar/internet b/.scripts/statusbar/internet index e26e6332..63a0a9d0 100755 --- a/.scripts/statusbar/internet +++ b/.scripts/statusbar/internet @@ -2,7 +2,7 @@ case $BLOCK_BUTTON in 1) $TERMINAL -e nmtui ;; - 3) pgrep -x dunst >/dev/null && notify-send "🌐 Internet module: + 3) pgrep -x dunst >/dev/null && notify-send " " "🌐 Internet module: - Click for \`nmtui\` for wifi access 📡: no wifi connection 📶: wifi connection with quality diff --git a/.scripts/statusbar/mailbox b/.scripts/statusbar/mailbox index 0c5ccbe6..a54b359b 100755 --- a/.scripts/statusbar/mailbox +++ b/.scripts/statusbar/mailbox @@ -7,7 +7,7 @@ case $BLOCK_BUTTON in 1) "$TERMINAL" -e neomutt ;; 2) setsid $HOME/.config/mutt/etc/mailsync.sh >/dev/null & ;; - 3) pgrep -x dunst >/dev/null && notify-send "📬 Mail module: + 3) pgrep -x dunst >/dev/null && notify-send " " "📬 Mail module: - Shows unread mail - Shows 🔃 if syncing mail - Left click opens neomutt diff --git a/.scripts/statusbar/memory b/.scripts/statusbar/memory index 40705c4e..a97e45e7 100755 --- a/.scripts/statusbar/memory +++ b/.scripts/statusbar/memory @@ -1,9 +1,9 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) notify-send "🧠 Memory hogs: + 1) notify-send " " "🧠 Memory hogs: $(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;; - 3) notify-send "🧠 Memory module: + 3) notify-send " " "🧠 Memory module: - Shows Memory Used/Total. - Click to show memory hogs." ;; esac diff --git a/.scripts/statusbar/music b/.scripts/statusbar/music index ef3a6c34..24fbc980 100755 --- a/.scripts/statusbar/music +++ b/.scripts/statusbar/music @@ -7,7 +7,7 @@ filter() { case $BLOCK_BUTTON in 1) mpc status | filter && setsid "$TERMINAL" -e ncmpcpp & ;; # right click, pause/unpause 2) mpc toggle | filter ;; # right click, pause/unpause - 3) mpc status | filter && pgrep -x dunst >/dev/null && notify-send "🎵 Music module: + 3) mpc status | filter && pgrep -x dunst >/dev/null && notify-send " " "🎵 Music module: - Shows mpd song playing. - Italic when paused. - Left click opens ncmpcpp. diff --git a/.scripts/statusbar/news b/.scripts/statusbar/news index 6c19d53f..f9f9d640 100755 --- a/.scripts/statusbar/news +++ b/.scripts/statusbar/news @@ -7,7 +7,7 @@ case $BLOCK_BUTTON in 1) setsid "$TERMINAL" -e newsboat ;; 2) setsid newsup >/dev/null & exit ;; - 3) pgrep -x dunst >/dev/null && notify-send "📰 News module: + 3) pgrep -x dunst >/dev/null && notify-send " " "📰 News module: - Shows unread news items - Shows 🔃 if updating with \`newsup\` - Left click opens newsboat diff --git a/.scripts/statusbar/pacpackages b/.scripts/statusbar/pacpackages index 9ec679e7..d7577a8a 100755 --- a/.scripts/statusbar/pacpackages +++ b/.scripts/statusbar/pacpackages @@ -8,8 +8,8 @@ case $BLOCK_BUTTON in 1) $TERMINAL -e popupgrade ;; - 2) notify-send "$(/usr/bin/pacman -Qu)" ;; - 3) pgrep -x dunst >/dev/null && notify-send "Upgrade module: + 2) notify-send " " "$(/usr/bin/pacman -Qu)" ;; + 3) pgrep -x dunst >/dev/null && notify-send " " "Upgrade module: 📦: number of upgradable packages - Left click to upgrade packages - Middle click to show upgradable packages" ;; diff --git a/.scripts/statusbar/torrent b/.scripts/statusbar/torrent index 8534cb18..920d9bb6 100755 --- a/.scripts/statusbar/torrent +++ b/.scripts/statusbar/torrent @@ -18,7 +18,7 @@ transmission-remote -l | grep % | case $BLOCK_BUTTON in 1) $TERMINAL -e transmission-remote-cli ;; - 3) pgrep -x dunst >/dev/null && notify-send "Torrent module: + 3) pgrep -x dunst >/dev/null && notify-send " " "Torrent module: 🛑: paused ⏳: idle (seeds needed) 🔼: uploading (unfinished) diff --git a/.scripts/statusbar/volume b/.scripts/statusbar/volume index d2bc71a9..f4aa8fe5 100755 --- a/.scripts/statusbar/volume +++ b/.scripts/statusbar/volume @@ -6,7 +6,7 @@ case $BLOCK_BUTTON in 2) pulsemixer --toggle-mute ;; 4) pulsemixer --change-volume +5 ;; 5) pulsemixer --change-volume -5 ;; - 3) pgrep -x dunst >/dev/null && notify-send "📢 Volume module: + 3) pgrep -x dunst >/dev/null && notify-send " " "📢 Volume module: - Shows volume 🔊, 🔇 if muted. - Middle click to mute. - Scroll to change."