This commit is contained in:
Digital Studium 2024-03-03 17:01:00 +03:00
parent c87ea36c67
commit ec02f1a4b7
1 changed files with 17 additions and 10 deletions

View File

@ -6,7 +6,7 @@ then
sudo sed -i '/dhcp4/a\ optional: yes' /etc/netplan/00-installer-config.yaml sudo sed -i '/dhcp4/a\ optional: yes' /etc/netplan/00-installer-config.yaml
fi fi
# Add firefox repo # Add firefox repo
echo "deb [trusted=yes] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null sudo bash -c 'echo "deb [trusted=yes] https://packages.mozilla.org/apt mozilla main" > /etc/apt/sources.list.d/mozilla.list'
# By default ubuntu installs firefox from snap, so I want to disable it # By default ubuntu installs firefox from snap, so I want to disable it
echo ' echo '
Package: * Package: *
@ -30,22 +30,29 @@ brightnessctl `# for keyboard backlight` \
xcompmgr `# for st opacity` \ xcompmgr `# for st opacity` \
xwallpaper `# for background` \ xwallpaper `# for background` \
ubuntu-wallpapers-jammy `# backgrounds` \ ubuntu-wallpapers-jammy `# backgrounds` \
pulseaudio `# for sound` \
alsa-base `# for sound` \
xfe `# classic file manager` \ xfe `# classic file manager` \
surf `# suckless lightweight browser` \ surf `# suckless lightweight browser` \
micro `# lightweight editor` \ micro `# console editor` \
neovim `# console editor` \
psmisc `# pstree etc.` \ psmisc `# pstree etc.` \
slack \ slack \
firefox \ firefox \
python3 python3 \
python3-venv
# install telegram # install telegram
if [ ! -f telegram.tar.xz ] if [ ! -d /opt/Telegram ]
then then
curl -L https://telegram.org/dl/desktop/linux -o telegram.tar.xz if [ ! -f telegram.tar.xz ]
fi then
tar -xf telegram.tar.xz curl -L https://telegram.org/dl/desktop/linux -o telegram.tar.xz
rm -f telegram.tar.xz fi
sudo mv Telegram /opt/ tar -xf telegram.tar.xz
rm -f telegram.tar.xz
sudo mv Telegram /opt/
fi
# remove snap cause I hate it # remove snap cause I hate it
sudo systemctl disable --now snapd sudo systemctl disable --now snapd