i3 Configuration
- i3-gaps-rounded
- ncpamixer
- polybar
- xbanish
- networkmanager-dmenu
- clipmenu
- rofi
- Mechvibes
- Nerd Font Iosevka
- San Francisco Font
- Material Design Icon
.
├── .bash
│ ├── aliases
│ ├── environments
│ └── extractor
├── .bash_profile
├── .bashrc
├── .config
│ ├── gtk-3.0
│ │ └── settings.ini
│ ├── i3
│ │ └── config
│ ├── neofetch
│ │ └── config.conf
│ ├── networkmanager-dmenu
│ │ └── config.ini
│ ├── polybar
│ │ ├── config
│ │ └── launch.sh
│ └── rofi-power
│ └── config
├── .gtkrc-2.0
├── .scripts
│ ├── clipmenu
│ ├── menu
│ └── powermenu
├── .wallpaper.jpg
├── .xinitrc
└── .Xresources
- Auto Login TTY
sudo systemctl edit getty@tty1
[Service]
ExecStart=
ExecStart=-/usr/bin/agetty --autologin {username} --noclear %I %TERM
- Fix Tearing
sudo nvim /etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
EndSection
- Tap to Click & Two Finger Scroll
sudo nvim /etc/X11/xorg.conf.d/90-touchpad.conf
Section "InputClass"
Identifier "touchpad"
MatchIsTouchpad "on"
Driver "libinput"
Option "Tapping" "on"
Option "TappingButtonMap" "lrm"
Option "NaturalScrolling" "on"
Option "ScrollMethod" "twofinger"
EndSection
- Fix Dummy Sound Output on Swift 3 required : alsa-ucm-conf & sof-firmware
sudo nvim /etc/modprobe.d/sound.conf
options snd-hda-intel model=dell-headset-multi
options snd-hda-intel power_save=1
amixer
- ESLINT NeoVIM
:CocCommand eslint.showOutputChannel