2022-07-04 21:36:33 +02:00
|
|
|
#!/bin/sh
|
2023-02-09 14:49:10 +01:00
|
|
|
|
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-02-28 12:42:55 +01:00
|
|
|
if [ -n "$TERM_PROGRAM" ]; 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
|