Compare commits

...

3 Commits

3 changed files with 23 additions and 11 deletions

View File

@ -1,6 +1,9 @@
#!/bin/bash
. "../src/01-common.sh" || exit 5
title "Installing grub-customizer..."
echo
echo "==============================================="
echo "Installing grub-customizer..."
echo "==============================================="
echo
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
apti grub-customizer
sudo apt install -y --autoremove grub-customizer

View File

@ -1,9 +1,12 @@
#!/bin/bash
. "../src/01-common.sh" || exit 5
title "Installing wine"
echo
echo "==============================================="
echo "Installing wine..."
echo "==============================================="
echo
sudo dpkg --add-architecture i386
wget -qO- https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
apti winehq-stable
installed "wine" && success "wine installed!"
sudo apt install -y --autoremove winehq-stable
wine --version

View File

@ -1,10 +1,14 @@
#!/bin/bash
. "../src/01-common.sh" || exit 5
title "Installing Window AppMenu Applet..."
echo
echo "==============================================="
echo "Installing KDE Window AppMenu Applet..."
echo "==============================================="
echo
# https://github.com/psifidotos/applet-window-appmenu/blob/master/INSTALLATION.md
apti make \
sudo apt install -y --autoremove \
make \
cmake \
extra-cmake-modules \
qtdeclarative5-dev \
@ -32,4 +36,6 @@ fi
sudo chown -R anthony: /usr/src/appmenu-applet
cd /usr/src/appmenu-applet/
sh ./install.sh
success 'Successful! Now you can add "Window AppMenu Applet" on desktop or panel'
echo
echo 'Success! Now you can add "Window AppMenu Applet" on desktop or panel'
echo