1
0
Fork 0
dot/README.md

72 lines
2.0 KiB
Markdown
Raw Normal View History

2024-02-11 10:29:14 +01:00
# dot
This repo tracks user and system configuration files, installed packages
2024-05-05 18:04:41 +02:00
and initial command history for setting-up a desktop environment running Debian
testing/unstable with `sway`, `foot`, `fuzzel` and `neovim`.
2024-02-11 10:29:14 +01:00
2024-05-05 18:04:41 +02:00
## bootstrap the dotfiles
2024-01-27 22:02:29 +01:00
2024-05-05 18:04:41 +02:00
```
2024-01-27 22:02:29 +01:00
sudo apt install git
2024-01-27 23:31:55 +01:00
git init -b main
2024-01-27 22:02:29 +01:00
git remote add origin gitea@git.kompot.si:urosm/dot.git
2024-02-11 10:29:14 +01:00
git pull origin main
2024-05-05 18:04:41 +02:00
```
## setup urosm@milano
```sh
# disable the annoying `.sudo_as_admin_successful` file
2024-01-27 23:31:55 +01:00
sudo cp -ri .config/sudoers.d /etc/
2024-05-05 18:04:41 +02:00
# update to debian testing
2024-01-27 23:31:55 +01:00
sudo cp -ri .config/apt /etc/
2024-02-11 10:29:14 +01:00
sudo apt update
sudo apt full-upgrade
2024-05-05 18:04:41 +02:00
# reconfigure locales
2024-01-27 22:02:29 +01:00
sudo dpkg-reconfigure locales
2024-05-05 18:04:41 +02:00
# configure and start firewall
sudo cp -ri .config/nftables.conf /etc/
systemctl enable --now nftables.service
# configure and install networking
2024-02-11 10:29:14 +01:00
sudo cp -ir .config/network /etc/
2024-05-05 18:04:41 +02:00
sudo apt install network-manager
# install utils
2024-02-11 10:29:14 +01:00
sudo apt install udisks2
sudo apt install jq
2024-05-05 18:04:41 +02:00
# install desktop packages
2024-02-11 10:29:14 +01:00
sudo apt install sway
2024-01-27 22:02:29 +01:00
sudo apt install swayidle swaylock
sudo apt install brightnessctl wlsunset
2024-05-05 18:04:41 +02:00
sudo apt install grim
sudo apt install mako-notifier libnotify-bin
2024-04-11 23:29:08 +02:00
sudo apt install fonts-agave
2024-05-05 18:04:41 +02:00
# install neovim
sudo apt install neovim wl-clipboard
# install and configure audio packages
2024-02-11 10:29:14 +01:00
sudo apt install pipewire-audio
systemctl --user enable --now wireplumber.service
2024-05-05 18:04:41 +02:00
# install writing packages
2024-02-11 10:29:14 +01:00
sudo apt install make
2024-01-27 22:02:29 +01:00
sudo apt install pandoc
sudo apt install texlive-latex-extra
sudo apt install texlive-lang-european
2024-05-05 18:04:41 +02:00
# install web packages
2024-01-27 22:02:29 +01:00
sudo apt install firefox
sudo apt install thunderbird
2024-05-05 18:04:41 +02:00
# install media packages
2024-01-27 22:02:29 +01:00
sudo apt install mpv
sudo apt install zathura
sudo apt install inkscape
2024-05-05 18:04:41 +02:00
# install office packages
2024-01-27 22:02:29 +01:00
sudo apt install libreoffice libreoffice-gtk3
sudo apt install libreoffice-l10n-sl
2024-05-05 18:04:41 +02:00
# install printing and scanning packages
2024-01-27 22:02:29 +01:00
sudo apt install cups printer-driver-all
2024-02-11 10:29:14 +01:00
sudo adduser urosm lpadmin
2024-01-27 22:02:29 +01:00
sudo apt install simple-scan
2024-05-05 18:04:41 +02:00
# install pdf processing packages
2024-02-11 10:29:14 +01:00
sudo apt install qpdf ocrmypdf
2024-05-05 18:04:41 +02:00
# install rdp packages
2024-01-27 22:02:29 +01:00
sudo apt install remmina
```