19 lines
276 B
Bash
Executable file
19 lines
276 B
Bash
Executable file
#!/bin/sh
|
|
|
|
read -r script<<EOF
|
|
sudo xbps-install -Su
|
|
pkill -RTMIN+8 dwmblocks
|
|
EOF
|
|
|
|
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
|