i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change code blocks from bash to shell

dunno if it really matters but shell is more correct for commands I guess

+11 -11
+11 -11
README.md
··· 21 21 //TODO: properly automate everything below 22 22 23 23 #### Clone dotfiles 24 - ```bash 24 + ```shell 25 25 git clone git@github.com:brw/dotfiles.git 26 26 ``` 27 27 ··· 29 29 Add `intel_pstate=disable` to the options in `/boot/entries/linux.conf` 30 30 31 31 #### Copy system files 32 - ```bash 32 + ```shell 33 33 sudo cp pacman/etc/pacman.conf /etc/ 34 34 sudo cp sysctl/etc/sysctld.d/80-gamecompatibility.conf /etc/sysctl.d/ 35 35 ``` 36 36 37 37 #### Install yay 38 - ```bash 38 + ```shell 39 39 git clone https://aur.archlinux.org/yay.git 40 40 cd yay 41 41 makepkg -si 42 42 ``` 43 43 44 44 #### Import tor gpg key 45 - ```bash 45 + ```shell 46 46 gpg --auto-key-locate nodefault,wkd --locate-keys torbrowser@torproject.org 47 47 ``` 48 48 49 49 #### Install packages 50 - ```bash 50 + ```shell 51 51 yay -Syu --needed $(cat arch-*-packages) 52 52 ``` 53 53 ··· 57 57 ``` 58 58 59 59 #### Update pkgfile database 60 - ```bash 60 + ```shell 61 61 sudo pkgfile -u 62 62 ``` 63 63 64 64 #### Enable plocate updatedb timer 65 - ```bash 65 + ```shell 66 66 sudo systemctl enable plocate-updatedb.timer 67 67 sudo updatedb 68 68 ``` 69 69 70 70 #### Enable printer service 71 - ```bash 71 + ```shell 72 72 sudo systemctl enable --now cups 73 73 ``` 74 74 75 75 #### Set locale to en_NL 76 76 uncomment `en_NL.UTF-8 UTF-8` in `/etc/locale.gen`, then 77 - ```bash 77 + ```shell 78 78 sudo locale-gen 79 79 ``` 80 80 81 81 #### Fix fish universal variables in Gnome Wayland session 82 - modify `/usr/bin/gnome-session`, changing (hardcoding) `$SHELL` to `bash` on line 10. 82 + modify `/usr/bin/gnome-session`, changing (hardcoding) `$SHELL` to `shell` on line 10. 83 83 84 84 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) 85 85 86 86 #### Fix scaling issues on Gnome Wayland 87 - ```bash 87 + ```shell 88 88 gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']" 89 89 ```