-
Oh My Zsh:
- .zshrc file
- To work you need these plugins:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
- NVM - Node Version Manager (optional)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
- Bun (optional)
curl -fsSL https://bun.sh/install | bash
-
VSCodium:
-
Kitty:
-
Fastfetch:
mkdir -p ~/.config/fastfetch curl -o ~/.config/fastfetch/config.jsonc https://raw.githubusercontent.com/robke96/linux_dots/refs/heads/main/fastfetch/config.jsonc
-
KDE:
- NVIDIA GPU FAN Control
-
Move script to safe place for example:
mkdir -p ~/.config/scripts curl -o ~/.config/scripts/nvidiafan.sh https://raw.githubusercontent.com/robke96/linux_dots/refs/heads/main/scripts/nvidiafan.sh
-
Give permissions for script
chmod +x ~/.config/scripts/nvidiafan.sh
-
Configure sudo for paswordless execution
- Edit the sudoers file using visudo:
sudo visudo
- Add this line at the end of the file, replace
<YOUR USERNAME>
with your username
<YOUR USERNAME> ALL=(ALL) NOPASSWD: /usr/bin/nvidia-settings *
-
Add script on startup launch and you good to go. KDE Autostart
-