???
This commit is contained in:
parent
c87ea36c67
commit
ec02f1a4b7
|
@ -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
|
||||||
|
if [ ! -f telegram.tar.xz ]
|
||||||
|
then
|
||||||
curl -L https://telegram.org/dl/desktop/linux -o telegram.tar.xz
|
curl -L https://telegram.org/dl/desktop/linux -o telegram.tar.xz
|
||||||
|
fi
|
||||||
|
tar -xf telegram.tar.xz
|
||||||
|
rm -f telegram.tar.xz
|
||||||
|
sudo mv Telegram /opt/
|
||||||
fi
|
fi
|
||||||
tar -xf telegram.tar.xz
|
|
||||||
rm -f telegram.tar.xz
|
|
||||||
sudo mv Telegram /opt/
|
|
||||||
|
|
||||||
# remove snap cause I hate it
|
# remove snap cause I hate it
|
||||||
sudo systemctl disable --now snapd
|
sudo systemctl disable --now snapd
|
||||||
|
|
Loading…
Reference in New Issue