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

20 lines
276 B
Text
Raw Normal View History

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