From 458815ece20f2bfbbb788078470c4c34407a2b7d Mon Sep 17 00:00:00 2001 From: Riyyi Date: Wed, 26 Sep 2018 21:34:14 +0200 Subject: [PATCH] Fix brightnessctl permissions in config, change nano to vim --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 069d67d..db928ee 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ $ systemctl enable netctl-auto@wlan0.service ``` Give wheel users sudo permission: ```sh -$ nano /etc/sudoers +$ vim /etc/sudoers (add)Defaults insults (uncomment)%wheel ALL=(ALL) ALL ``` @@ -68,7 +68,7 @@ $ chsh -s /bin/zsh ``` Pacman colors: ```sh -$ nano /etc/pacman.conf +$ vim /etc/pacman.conf (uncomment)Color ``` Git: @@ -81,7 +81,7 @@ Tlp: $ systemctl enable tlp.service $ systemctl enable tlp-sleep.service -$ nano /etc/default/tlp +$ vim /etc/default/tlp (edit)SOUND_POWER_SAVE_ON_BAT=0 ``` Trim: @@ -101,6 +101,11 @@ Give permission to /dev/ttyUSB0 for PlatformIO: ```sh $ gpasswd -a uucp ``` +Give permisson to change brightness for brightnessctl: +```sh +$ gpasswd -a input +$ gpasswd -a video +``` Set Firefox as default browser: ```sh $ xdg-settings set default-web-browser firefox.desktop @@ -108,6 +113,6 @@ $ 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 +$ vim /etc/fstab (add)efivarfs /sys/firmware/efi/efivars efivarfs ro,nosuid,nodev,noexec,noatime 0 0 ```