40 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Read platform to install on (only if no platform file present in ~/.config/)
 | |
| read -p "Choose the configs to install, Laptop or Desktop (l/D): " platform
 | |
| 
 | |
| # Packages to be added to install: aylurs-gtk-shell-git, brightnessctl, zoxide, trash-cli, fzf, ouch
 | |
| # Install yazi plugins using ya pack -a ndtoan96/ouch and ya pack -a boydaihungst/restore
 | |
| #
 | |
| # Hyprland
 | |
| yay -S hyprland hypridle hyprfreeze hyprlock plymouth aylurs-gtk-shell-git brightnessctl pulsemixer xdg-desktop-portal-hyprland  cliphist
 | |
| 
 | |
| # Audio, drivers, tools
 | |
| yay -S pipewire pipewire-alsa pipewire-pulse pipewire-jack mesa fish thunar yazi wireplumber grimblast wl-clipboard wget vimiv zoxide trash-cli fzf ouch zathura sensors radeontop lm-sensors
 | |
| 
 | |
| # Set up yazi
 | |
| ya pkg add ndtoan96/ouch
 | |
| ya pkg add boydaihungst/restore
 | |
| ya pkg add yazi-rs/plugins:vcs-files
 | |
| 
 | |
| # Fonts
 | |
| yay -S adobe-source-code-pro-fonts gnome-font-viewer gnome-characters gnome-tweaks lxappearance kvantum gnome-keyring smartmontools ffmpeg polkit-gnome swaybg network-manager-applet polkit-kde-agent cpupower-gui ttf-fantasque-nerd ttf-jetbrains-mono-nerd ttf-fluentui-system-icons ttf-comfortaa
 | |
| 
 | |
| # Programming
 | |
| yay -S meld docker vscodium kitty fish docker terminator bvi nodejs npm python-pip git-credential-manager-core-bin wine kate rustup cargo filezilla php jdk 
 | |
| 
 | |
| # nvim
 | |
| yay -S neovim lua lua-language-server tree-sitter texlab stylua luarocks jdtls perl julia autojump pyright vscode-css-languageserver vscode-html-languageserver bash-language-server lazygit python-black proselint asmfmt typescript-language-server
 | |
| sudo npm i -g @vue/typescript-plugin
 | |
| 
 | |
| # Internet
 | |
| yay -S librewolf-bin webcord-bin thunderbird rustdesk brave-bin
 | |
| 
 | |
| # Utilities
 | |
| yay -S okular vlc nextcloud-client p7zip zip unzip gnome-keyring noto-fonts thunderbird pamixer pavucontrol light neofetch bashtop hugo sddm uxplay upower gdu
 | |
| 
 | |
| # LaTeX
 | |
| yay -S texlive biber
 | |
| 
 | |
| sudo npm i -g create-vue sitemap-generator-cli
 |