1
0
Fork 0

README.md: update

main
urosm 2024-06-12 00:49:47 +02:00
parent afceeea6a2
commit bd1b177f3a
1 changed files with 18 additions and 21 deletions

View File

@ -18,6 +18,7 @@ git pull origin main
```sh ```sh
# disable the annoying `.sudo_as_admin_successful` file # disable the annoying `.sudo_as_admin_successful` file
sudo cp -ri .config/sudoers.d /etc/ sudo cp -ri .config/sudoers.d /etc/
rm .sudo_as_admin_successful
# update to debian testing # update to debian testing
sudo cp -ri .config/apt /etc/ sudo cp -ri .config/apt /etc/
sudo apt update sudo apt update
@ -26,30 +27,24 @@ sudo apt full-upgrade
sudo dpkg-reconfigure locales sudo dpkg-reconfigure locales
# configure and start firewall # configure and start firewall
sudo cp -ri .config/nftables.conf /etc/ sudo cp -ri .config/nftables.conf /etc/
systemctl enable --now nftables.service systemctl enable --now nftables
# configure and install networking # configure and install networking
sudo cp -ir .config/network /etc/
sudo apt install network-manager sudo apt install network-manager
# install utils # install utils
sudo apt install udisks2 sudo apt install udevil
sudo apt install jq sudo apt install jq
sudo apt install neovim wl-clipboard
# install desktop packages # install desktop packages
sudo apt install sway sudo apt install sway swayidle swaylock
sudo apt install swayidle swaylock sudo apt install fuzzel
sudo apt install brightnessctl wlsunset sudo apt install brightnessctl wlsunset grim
sudo apt install grim
sudo apt install mako-notifier libnotify-bin sudo apt install mako-notifier libnotify-bin
sudo apt install fonts-agave sudo apt install fonts-agave
# install neovim
sudo apt install neovim wl-clipboard
# install and configure audio packages
sudo apt install pipewire-audio sudo apt install pipewire-audio
systemctl --user enable --now wireplumber.service systemctl --user enable --now wireplumber
# install writing packages # install office packages
sudo apt install make sudo apt install libreoffice libreoffice-gtk3
sudo apt install pandoc sudo apt install aspell-sl hunspell-sl hyphen-sl mythes-sl
sudo apt install texlive-latex-extra
sudo apt install texlive-lang-european
# install web packages # install web packages
sudo apt install firefox sudo apt install firefox
sudo apt install thunderbird sudo apt install thunderbird
@ -57,15 +52,17 @@ sudo apt install thunderbird
sudo apt install mpv sudo apt install mpv
sudo apt install zathura sudo apt install zathura
sudo apt install inkscape sudo apt install inkscape
# install office packages # install rdp packages
sudo apt install libreoffice libreoffice-gtk3 sudo apt install remmina
sudo apt install libreoffice-l10n-sl
# install printing and scanning packages # install printing and scanning packages
sudo apt install cups printer-driver-all sudo apt install cups printer-driver-all
sudo adduser urosm lpadmin sudo adduser urosm lpadmin
sudo apt install simple-scan sudo apt install simple-scan
# install writing packages
sudo apt install make
sudo apt install pandoc
sudo apt install texlive-latex-extra
sudo apt install texlive-lang-european
# install pdf processing packages # install pdf processing packages
sudo apt install qpdf ocrmypdf sudo apt install qpdf ocrmypdf
# install rdp packages
sudo apt install remmina
``` ```