1
0
Fork 0
dotfiles/.local/bin/upgrades
2024-04-18 11:39:42 +02:00

16 lines
262 B
Bash
Executable file

#!/bin/sh
script="sudo xbps-install -Su; pkill -RTMIN+8 dwmblocks"
if [ -n "$TERM" ]; then
sh -c "$script"
else
st -e sh -c "
$script
tput bold
tput setaf 4
echo 'All done!'
tput sgr 0
read -r _
"
fi