2024-03-16 15:34:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cat > /tmp/.dialogrc << EOL
|
|
|
|
# Item color
|
|
|
|
tag_color = (BLACK,WHITE,ON)
|
|
|
|
EOL
|
|
|
|
action=$(DIALOGRC=/tmp/.dialogrc dialog --stdout --erase-on-exit --menu "Choose the action for apt" 10 40 0 "Update" 1 "Upgrade" 2 "Install" 3 "Remove" 4)
|
|
|
|
|
|
|
|
|
|
|
|
if [[ $action == "Install" || $action == "Remove" ]]; then
|
2024-03-16 15:51:56 +00:00
|
|
|
package=$(apt-cache search '' | sort | cut --delimiter ' ' --fields 1 | fzf --multi --cycle --reverse --preview 'apt-cache show {1}')
|
2024-03-16 15:34:40 +00:00
|
|
|
sudo apt ${action,,} $package -y
|
|
|
|
elif [[ $action == "Update" || $action == "Upgrade" ]]; then
|
|
|
|
sudo apt ${action,,} -y
|
|
|
|
fi
|