1
0
Fork 0
dotfiles/.local/bin/upgrades

17 lines
262 B
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
2024-03-06 15:34:19 +01:00
script="sudo xbps-install -Su; pkill -RTMIN+8 dwmblocks"
2023-04-12 11:37:10 +02:00
2024-04-18 11:39:42 +02:00
if [ -n "$TERM" ]; then
2024-03-06 15:34:19 +01:00
sh -c "$script"
2024-02-28 12:42:55 +01:00
else
st -e sh -c "
$script
tput bold
tput setaf 4
echo 'All done!'
tput sgr 0
read -r _
"
fi