···5757sudo cp -i sysctl/etc/sysctld.d/* /etc/sysctl.d/
5858sudo cp -i zram/etc/systemd/zram-generator.conf /etc/systemd/
5959sudo cp -i etc/udev/rules.d/10-trim.rules /etc/udev/rules.d/
6060+sudo cp -i throttled/etc/throttled.conf /etc/throttled.conf
6161+```
6262+6363+#### Enable throttled
6464+```shell
6565+sudo systemctl enable --now throttled
6066```
61676268#### Install yay
···8389stow -d dotfiles bin cpupower direnv fish git gtk neofetch nvim pacman ripgrep mise starship stow terminator wayland yay
8490```
85918686-#### Update pkgfile database
9292+#### Use systemd-resolved
9393+```shell
9494+sudo ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
9595+sudo systemctl enable --now systemd-resolved
9696+```
9797+9898+#### Enable pkgfile daemon and pacman files db refresh timer
8799```shell
8888-sudo pkgfile -u
100100+sudo systemctl enable --now pkgfiled pacman-filesdb-refresh.timer
89101```
9010291103#### Enable timers
···98110sudo systemctl enable --now cups
99111```
100112113113+#### Enable systemd-boot update service
114114+```shell
115115+sudo systemctl enable systemd-boot-update
116116+```
117117+101118#### Enable en_NL locale
102119```shell
103120sudo sed -i '/^#en_NL.UTF-8 UTF-8/s/^#//' /etc/locale.gen
104121sudo locale-gen
105122```
106123124124+#### Enable kernel-modules-hook linux-modules-cleanup service
125125+```shell
126126+sudo systemctl enable --now linux-modules-cleanup
127127+```
128128+107129#### Fix fish universal variables in Gnome Wayland session
108108-modify `/usr/bin/gnome-session`, changing (hardcoding) `$SHELL` to `shell` on line 10.
130130+Modify `/usr/bin/gnome-session`, changing (hardcoding) `$SHELL` to `sh` on line 10 ([temporary fix](https://github.com/fish-shell/fish-shell/issues/7995), probably bad practice but /shrug, universal variables are sort of maybe [being removed](https://github.com/fish-shell/fish-shell/issues/7379) in the near future anyway, at which point I'll change this)
109131110110-temporary fix for https://github.com/fish-shell/fish-shell/issues/7995 (probably bad but /shrug, universal variables are sort of maybe [being removed](https://github.com/fish-shell/fish-shell/issues/7379) in the near future anyway, at which point I'll change this)
111132112112-#### Fix scaling issues on Gnome Wayland
133133+#### Fix scaling issues on Gnome Wayland and bluriness with Xwayland
113134```shell
114114-gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
135135+org.gnome.mutter experimental-features ['scale-monitor-framebuffer', 'xwayland-native-scaling']
115136```
116137117138#### Unbind XF86Tools (F13) on Gnome
118118-for some reason the button I have bound to F13 on my mouse opens the Gnome control center/settings by default, with no way to change it outside of dconf/gsettings. quite annoying
139139+For some reason the button I have bound to F13 on my mouse opens the Gnome control center/settings by default, with no way to change it outside of dconf/gsettings. quite annoying
140140+119141```shell
120142gsettings set org.gnome.settings-daemon.plugins.media-keys control-center-static "['']"
121143```
122144145145+#### Enable Gnome Keyring SSH Agent
146146+```shell
147147+systemctl --user enable --now gcr-ssh-agent
148148+ssh-add
149149+````
150150+151151+#### Set up keylightd
152152+```
153153+sudo usermod -aG keylightd bas
154154+sudo systemctl enable --now keylightd
155155+```
156156+123157#### Get latest plex-rich-presence
124158```shell
125159curl -s https://api.github.com/repos/Arno500/plex-richpresence/releases/latest \
···130164131165#### Install systemd services
132166```shell
133133-sudo cp systemd/etc/systemd/system/reload-cpu-modules.service /etc/systemd/system/
134134-sudo systemctl enable --now reload-cpu-modules
135135-cp systemd/.config/systemd/user/plex-rich-presence.service ~/.config/systemd/user/
136136-#cp systemd/.config/systemd/user/imwheel.service ~/.config/systemd/user/
167167+cp -i systemd/.config/systemd/user/plex-rich-presence.service ~/.config/systemd/user/
137168systemctl --user enable --now plex-rich-presence
169169+#sudo cp -i etc/systemd/system/reload-cpu-modules.service /etc/systemd/system/
170170+#sudo systemctl enable --now reload-cpu-modules
171171+#cp -i systemd/.config/systemd/user/imwheel.service ~/.config/systemd/user/
172172+#systemctl --user enable --now imwheel
138173```