- Fix spacing around and between windows - Add keybindings for rofi-rbw & control center - Replace keybindings for actions with rofi menu - Move system restore processes to the end of startup hook - Use scripts in ~/.scripts with command line arguments where possible - Remove unnecessary shebangs at the start of scripts - Replace polybar powermenu with clickable icon that launches rofi
12 lines
439 B
Bash
Executable File
12 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
if ! num_updates=$(paru -Qu 2>/dev/null | wc -l); then
|
|
# if ! updates_aur=$(yay -Qum 2>/dev/null | wc -l); then
|
|
# if ! updates_aur=$(cower -u 2> /dev/null | wc -l); then
|
|
# if ! updates_aur=$(trizen -Su --aur --quiet | wc -l); then
|
|
# if ! updates_aur=$(pikaur -Qua 2> /dev/null | wc -l); then
|
|
# if ! updates_aur=$(rua upgrade --printonly 2> /dev/null | wc -l); then
|
|
num_updates=0
|
|
fi
|
|
|
|
echo "$num_updates"
|