# Dotfiles
This is a collection of dotfiles and scripts for my i3 setup, previewed below:
![Screenshot](screenshot.png)
### Software:
All packages that are manually installed via pacman -S, can be found in the packages file,
dependencies are not included.
### Configuration:
Below are all the system changes that were made.
$ = command
<> = variable
() = action
Predictable network interface names:
```
$ ln -s /dev/null /etc/systemd/network/99-default.link
```
Network:
```sh
$ systemctl enable netctl-auto@wlan0.service
```
Give wheel users sudo permission:
```sh
$ nano /etc/sudoers
(add)Defaults insults
(uncomment)%wheel ALL=(ALL) ALL
```
Add user:
```sh
$ useradd -m -G wheel -s /bin/bash
$ passwd
```
Installing pacaur:
```sh
$ gpg --recv-keys
$ git clone cower
$ cd cower
$ makepkg -si
$ cd ..
$ git clone pacaur
$ cd pacaur
$ makepkg -si
$ cd ..
$ pacaur -S cower pacaur
$ rm -rf cower pacaur
```
Switch shell to zsh:
```sh
$ chsh -s /bin/zsh
```
Pacman colors:
```sh
$ nano /etc/pacman.conf
(uncomment)Color
```
Git:
```sh
$ git config --global user.email ""
$ git config --global user.name ""
```
Tlp:
```sh
$ systemctl enable tlp.service
$ systemctl enable tlp-sleep.service
$ nano /etc/default/tlp
(edit)SOUND_POWER_SAVE_ON_BAT=0
```
Trim:
```sh
$ systemctl enable fstrim.timer
```
Clock internet sync:
```sh
$ timedatectl set-ntp true
```
Mail gpg:
```sh
$ gpg --decrypt | gpg --import
$ gpg --search-keys
```
Give permission to /dev/ttyUSB0 for PlatformIO:
```sh
$ gpasswd -a uucp
```
Set Firefox as default browser:
```sh
$ xdg-settings set default-web-browser firefox.desktop
```
Prevent bricking motherboard by mounting efivars read-only:
https://wiki.archlinux.org/index.php/Unified_Extensible_Firmware_Interface#Mount_efivarfs
```sh
$ nano /etc/fstab
(add)efivarfs /sys/firmware/efi/efivars efivarfs ro,nosuid,nodev,noexec,noatime 0 0
```