70 lines
2.5 KiB
Bash
Executable File
70 lines
2.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Welcome. Please run as user. Sudo required"
|
|
|
|
|
|
# Hyprland
|
|
yay -S hyprland hypridle hyprfreeze hyprlock plymouth aylurs-gtk-shell-git brightnessctl pulsemixer xdg-desktop-portal-hyprland cliphist grimblast wl-clipboard polkit-gnome swaybg polkit-kde-agent grim
|
|
|
|
# Audio, drivers
|
|
echo "==> Installing drivers..."
|
|
yay -S pipewire pipewire-alsa pipewire-pulse pipewire-jack mesa wireplumber trash-cli sensors radeontop lm-sensors smartmontools
|
|
|
|
# Tools
|
|
echo "==> Installing tools..."
|
|
yay -S fish fzf ouch zathura wget vimiv zoxide thunar yazi gnome-tweaks lxappearance gnome-keyring ffmpeg network-manager-applet cpupower-gui python-tkinter acpi python-pillow seahorse
|
|
|
|
# Set up yazi
|
|
echo "==> Setting up yazi..."
|
|
ya pkg add ndtoan96/ouch
|
|
ya pkg add boydaihungst/restore
|
|
ya pkg add yazi-rs/plugins:vcs-files
|
|
|
|
# Fonts
|
|
echo "==> Installing fonts..."
|
|
yay -S adobe-source-code-pro-fonts gnome-font-viewer gnome-characters ttf-fantasque-nerd ttf-jetbrains-mono-nerd ttf-fluentui-system-icons ttf-comfortaa
|
|
|
|
# Programming
|
|
echo "==> Installing coding tools..."
|
|
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
|
|
echo "==> Installing 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 shfmt
|
|
sudo npm i -g @vue/typescript-plugin
|
|
|
|
# Internet
|
|
echo "==> Installing internet programs..."
|
|
yay -S librewolf-bin vesktop-bin thunderbird rustdesk brave-bin
|
|
|
|
# Utilities
|
|
echo "==> Installing other utilities..."
|
|
yay -S okular vlc nextcloud-client p7zip zip unzip gnome-keyring noto-fonts thunderbird pamixer pavucontrol light fastfetch bashtop hugo sddm uxplay upower gdu dig nwg-look serpl fcitx5 qalculate-gtk openconnect light blueman xdg-desktop-portal-termfilechooser-hunkiburrito-git
|
|
|
|
# LaTeX
|
|
echo "==> Installing LaTeX..."
|
|
yay -S texlive biber textlive-latexextras texlab
|
|
|
|
# WebDev utilities
|
|
echo "==> Installing webdev utilities..."
|
|
sudo npm i -g create-vue sitemap-generator-cli
|
|
|
|
|
|
echo "Adjust the interface font using GNOME Tweaks"
|
|
|
|
mkdir ~/NextCloud/
|
|
read -p "Press enter after logging into NextCloud"
|
|
|
|
unzip ~/NextCloud/Documents/Private/PC/oreo_spark_blue_cursors.zip
|
|
tar -xf ~/NextCloud/Documents/Private/PC/monterey-grub-theme.tar.xz
|
|
|
|
cd ~/NextCloud/Documents/Private/PC/monterey-grub-theme
|
|
./install.sh
|
|
|
|
cd ../
|
|
|
|
cp ./oreo_spark_blue_cursors /usr/share/icons/
|
|
|
|
|
|
echo "DONE!"
|