Wallpapers from Gruvbox Wallpapers use the dynamic_wallpaper.sh in scripts to change wallpapers dynamically and a radom theme each time the computer starts.
pacman -S dmenu picom zathura ttf-font-awesome vifm feh ttf-dejavu ttf-liberation tmux zsh thunar
Install pacman -S lxappearance and yay -S gruvbox-dark-gtk to change thunar theme to gruvbox
Plugins used with vim plug,
- sainnhe/gruvbox-material (Gruvbox theme)
- neoclide/coc.nvim (Language server)
- lervag/vimtex (Latex for vim)
- godlygeek/tabular (Auto align of tabulation)
- iamcco/markdown-preview.nvim (Markdown preview)
- ixru/nvim-markdown (Markdown)
- tpope/vim-fugitive (Git)
pacman -S nodejs npm yarn
- Create a dwm.desktop file at
/usr/share/xsessions/ - Paste the following in the file
[Desktop Entry]
Encoding=UTF-8
Name=Dwm
Comment=Dynamic window manager
Exec=dwm
Icon=dwm
Type=XSession- Change the file to executalble
chmod +x dwm.desktop
-
Check if the directory exists
sudo mkdir -p /etc/X11/xorg.conf.d -
Create a new file in the directory for touchpad
sudo touch /etc/X11/xorg.conf.d/90-touchpad.conf
Paste the following Config in the file
Section "InputClass"
Identifier "touchpad"
MatchIsTouchpad "on"
Driver "libinput"
Option "Tapping" "on"
Option "TappingButtonMap" "lrm"
Option "NaturalScrolling" "on"
Option "ScrollMethod" "twofinger"
EndSection
