654 lines
15 KiB
Bash
Executable file
654 lines
15 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# don't remove line after package_install
|
|
# it will result in this syntax error: unexpected end of file
|
|
|
|
# #################### [ ESSENTIALS ] ####################
|
|
# Installs essential packages and defining important functions
|
|
|
|
# https://stackoverflow.com/a/246128/12979111
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
POST_INSTALL=()
|
|
|
|
|
|
BOLD="\e[1m"
|
|
RESET="\e[0m"
|
|
|
|
RED="\e[91m" # actually light red
|
|
GREEN="\e[92m" # actually light green
|
|
YELLOW="\e[33m"
|
|
|
|
log_no_label() {
|
|
echo -e "$GREEN$BOLD$*$RESET"
|
|
}
|
|
|
|
warn_no_label() {
|
|
echo -e "$YELLOW$BOLD$*$RESET"
|
|
}
|
|
|
|
error_no_label() {
|
|
echo -e "$RED$BOLD$*$RESET"
|
|
}
|
|
|
|
log() {
|
|
echo -e " $GREEN$BOLD INFO | $*$RESET"
|
|
}
|
|
|
|
warn() {
|
|
echo -e " $YELLOW$BOLD WARNING | $*$RESET"
|
|
}
|
|
|
|
error() {
|
|
>&2 echo -e " $RED$BOLD ERROR | $*$RESET"
|
|
}
|
|
|
|
title() {
|
|
echo
|
|
echo -e "$BOLD$GREEN====================[ $* ]====================$RESET"
|
|
}
|
|
|
|
package_install() {
|
|
pamac install "$@"
|
|
}
|
|
|
|
# #################### [ DEFINING ESSENTIAL SETUP ] ####################
|
|
|
|
backup() {
|
|
dconf dump / > "$SCRIPT_DIR/dconf.conf"
|
|
# copy /home/pomp directory
|
|
# timeshift settings
|
|
sudo timeshift --create --comments "auto created by developomp setup script"
|
|
}
|
|
|
|
setup_essentials() {
|
|
:
|
|
# enable multilib, color, parallel download, and total download in /etc/pacman.conf
|
|
}
|
|
|
|
remove_essentials() {
|
|
:
|
|
# epiphany
|
|
# gnome-color-manager
|
|
# kvantum-qt5
|
|
# totem
|
|
}
|
|
|
|
# #################### [ DEFINING SETUP ] ####################
|
|
# Define instructions on how to setup applications & stuff
|
|
|
|
# future:
|
|
# 4kvideodownloader \
|
|
# alacarte \
|
|
# dotnet-sdk \
|
|
# filezilla \
|
|
# gpa \
|
|
# gpick \
|
|
# gsmartcontrol \
|
|
# hardinfo \
|
|
# htop \
|
|
# lldb \
|
|
# mystiq \
|
|
# pavucontrol \
|
|
# piper \
|
|
# putty \
|
|
# python-pip \
|
|
# sqlitebrowser \
|
|
# timeshift \
|
|
# transmission-gtk \
|
|
# unityhub \
|
|
# xinput-gui \
|
|
# xmousepasteblock-git \
|
|
# yarn \
|
|
|
|
|
|
setup_blender() {
|
|
package_install \
|
|
blender \
|
|
|
|
}
|
|
|
|
setup_conky() {
|
|
package_install \
|
|
conky \
|
|
vnstat `# network traffic statistics (for conky)` \
|
|
|
|
# enable on startup
|
|
# sudo systemctl enable vnstat
|
|
# sudo systemctl start vnstat
|
|
}
|
|
|
|
setup_cpu_undervolting() {
|
|
# Undervolting for intel CPU
|
|
# https://wiki.archlinux.org/index.php/Undervolting_CPU
|
|
|
|
package_install \
|
|
intel-undervolt \
|
|
|
|
config_file=/etc/intel-undervolt.conf
|
|
|
|
# create backup in case anything goes wrong
|
|
sudo cp $config_file $config_file.bak
|
|
|
|
# Explanation:
|
|
# for lines that are not comments (lines that do not start with a hash)
|
|
# search for "undervolt <number> '<field>' <original value><comment>"
|
|
# and replaces with "undervolt <number> '<field>' -100 <comment>"
|
|
# This method does not preserve the space between the value and the comment.
|
|
# So this:
|
|
# value # space between comment and value: 2
|
|
# becomes this:
|
|
# value # space between comment and value: 1
|
|
sudo sed -i -e "/^[^#]/s/\(undervolt [0-9]* 'CPU'\) .*\(#.*\)/\1 -100 \2/" $config_file
|
|
sudo sed -i -e "/^[^#]/s/\(undervolt [0-9]* 'CPU Cache'\) .*\(#.*\)/\1 -100 \2/" $config_file
|
|
|
|
sudo intel-undervolt apply
|
|
sudo systemctl enable intel-undervolt
|
|
}
|
|
|
|
setup_dconf() {
|
|
# todo: freon GPU, decimal, and unit
|
|
# must be done after install to make sure configs are not overwritten
|
|
dconf load / < $SCRIPT_DIR/dconf.conf
|
|
}
|
|
|
|
setup_discord() {
|
|
# assumes that plugins are stored in ~/.config/BetterDiscord/plugins
|
|
|
|
package_install \
|
|
discord `# discord` \
|
|
betterdiscordctl-git `# for installing betterdiscord` \
|
|
discord-overlay-git `# overlay for discord` \
|
|
|
|
BD_PLUGINS=(
|
|
134 # https://betterdiscord.app/plugin/Avatar%20Hover
|
|
60 # https://betterdiscord.app/plugin/BadgesEverywhere
|
|
119 # https://betterdiscord.app/plugin/BetterCodeblocks
|
|
62 # https://betterdiscord.app/plugin/BetterNsfwTag
|
|
63 # https://betterdiscord.app/plugin/BetterSearchPage
|
|
228 # https://betterdiscord.app/plugin/CallTimeCounter
|
|
64 # https://betterdiscord.app/plugin/CharCounter
|
|
67 # https://betterdiscord.app/plugin/CompleteTimestamps
|
|
176 # https://betterdiscord.app/plugin/Copier
|
|
68 # https://betterdiscord.app/plugin/CopyRawMessage
|
|
69 # https://betterdiscord.app/plugin/CreationDate
|
|
186 # https://betterdiscord.app/plugin/DoNotTrack
|
|
132 # https://betterdiscord.app/plugin/EmoteReplacer
|
|
245 # https://betterdiscord.app/plugin/FreeEmojis
|
|
81 # https://betterdiscord.app/plugin/GoogleTranslateOption
|
|
284 # https://betterdiscord.app/plugin/GrammarCorrect
|
|
220 # https://betterdiscord.app/plugin/GuildProfile
|
|
83 # https://betterdiscord.app/plugin/ImageUtilities
|
|
295 # https://betterdiscord.app/plugin/InvisibleTyping
|
|
84 # https://betterdiscord.app/plugin/JoinedAtDate
|
|
85 # https://betterdiscord.app/plugin/LastMessageDate
|
|
287 # https://betterdiscord.app/plugin/Link-Profile-Picture
|
|
11 # https://betterdiscord.app/plugin/MemberCount
|
|
29 # https://betterdiscord.app/plugin/PermissionsViewer
|
|
158 # https://betterdiscord.app/plugin/PlatformIndicators
|
|
93 # https://betterdiscord.app/plugin/QuickMention
|
|
94 # https://betterdiscord.app/plugin/ReadAllNotificationsButton
|
|
179 # https://betterdiscord.app/plugin/RedditMentions
|
|
97 # https://betterdiscord.app/plugin/RevealAllSpoilersOption
|
|
139 # https://betterdiscord.app/plugin/SecretRingTone
|
|
98 # https://betterdiscord.app/plugin/SendLargeMessages
|
|
99 # https://betterdiscord.app/plugin/ServerCounter
|
|
159 # https://betterdiscord.app/plugin/ShowAllActivities
|
|
291 # https://betterdiscord.app/plugin/ShowConnections
|
|
103 # https://betterdiscord.app/plugin/ShowHiddenChannels
|
|
104 # https://betterdiscord.app/plugin/SpellCheck
|
|
162 # https://betterdiscord.app/plugin/StaffTag
|
|
8 # https://betterdiscord.app/plugin/SuppressReplyMentions
|
|
253 # https://betterdiscord.app/plugin/Typing%20Users%20Avatars
|
|
196 # https://betterdiscord.app/plugin/TypingIndicator
|
|
293 # https://betterdiscord.app/plugin/UserDetails
|
|
)
|
|
|
|
log "installing betterdiscord plugins"
|
|
|
|
for id in "${BD_PLUGINS[@]}"; do
|
|
BD_PLUGIN_URL="https://betterdiscord.app/Download?id=$id"
|
|
log "installing $BD_PLUGIN_URL"
|
|
wget --content-disposition --no-clobber -P ~/.config/BetterDiscord/plugins "$BD_PLUGIN_URL"
|
|
done
|
|
}
|
|
|
|
setup_dns() {
|
|
:
|
|
# https://1.1.1.1
|
|
}
|
|
|
|
setup_firefox() {
|
|
package_install \
|
|
firefox-developer-edition \
|
|
|
|
# DNS https cloudflare
|
|
POST_INSTALL+=(
|
|
"firefox: log in"
|
|
"firefox: restore onetab"
|
|
)
|
|
}
|
|
|
|
setup_fonts() {
|
|
log "installing fonts"
|
|
|
|
# path to temporarily save font related files
|
|
fonts_directory="./fonts"
|
|
|
|
# fonts to download
|
|
font_names=(
|
|
"Audiowide"
|
|
"Comfortaa"
|
|
"Nanum Gothic"
|
|
"Source Code Pro"
|
|
)
|
|
|
|
# create fonts directory if it does not exist
|
|
if [ ! -d "$fonts_directory" ]; then
|
|
mkdir "$fonts_directory"
|
|
fi
|
|
|
|
# download and unzip font files if they're not downloaded already
|
|
for font_name in "${font_names[@]}"; do
|
|
zip_path="$fonts_directory/$font_name.zip"
|
|
|
|
# download and unzip if either zip file or unzipped directory exists
|
|
if [ ! -f "$zip_path" ] && [ ! -d "$fonts_directory/$font_name" ]; then
|
|
wget -O "$zip_path" "https://fonts.google.com/download?family=$font_name" # download zip file
|
|
unzip "$zip_path" -d "$fonts_directory/$font_name" # unzip file
|
|
rm "$zip_path" # remove zip file
|
|
fi
|
|
done
|
|
|
|
font_install_dir="$HOME/.local/share/fonts"
|
|
|
|
# create local fonts directory if it does not exist already
|
|
if [ ! -d "$font_install_dir" ]; then
|
|
mkdir "$font_install_dir"
|
|
fi
|
|
|
|
# "install" all fonts
|
|
find "$fonts_directory" -type f -name "*.ttf" | while read ttf_file_path ; do
|
|
mv -f "$ttf_file_path" "$font_install_dir/${ttf_file_path##*/}"
|
|
done
|
|
|
|
# regenerate font cache
|
|
fc-cache -vf
|
|
|
|
# cleanup
|
|
rm -rf $fonts_directory
|
|
|
|
package_install \
|
|
noto-fonts-emoji `# ` \
|
|
ttf-ms-win10 `# ` \
|
|
nerd-fonts-noto-sans-mono `# Terminal font` \
|
|
|
|
}
|
|
|
|
setup_gimp() {
|
|
package_install \
|
|
gimp \
|
|
|
|
}
|
|
|
|
setup_gnome() {
|
|
package_install \
|
|
baobab `# Disk usage analysis` \
|
|
dconf-editor `# GUI for dconf` \
|
|
gnome-characters `# Search for emojis, special characters, and symbols` \
|
|
gnome-clocks `# For multiple clocks for different time zones` \
|
|
gnome-font-viewer `# Managing fonts` \
|
|
gnome-logs `# GUI for system journal` \
|
|
gnome-usage `# System resource statistics` \
|
|
gnome-terminal-transparency `# Transparent gnome terminal` \
|
|
gnome-shell-extension-installer `# Installation of gnome extensions from command line` \
|
|
|
|
# install gnome extensions
|
|
log "installing gnome extensions"
|
|
extension_ids=(
|
|
36 # lock-keys
|
|
131 # touchpad-indicator
|
|
355 # status-area-horizontal-spacing
|
|
750 # openweather
|
|
800 # remove-dropdown-arrows
|
|
841 # freon
|
|
906 # sound-output-device-chooser
|
|
945 # cpu-power-manager
|
|
2741 # remove-alttab-delay-v2
|
|
4000 # babar
|
|
)
|
|
|
|
for extension_id in "${extension_ids[@]}"; do
|
|
log "- https://extensions.gnome.org/extension/$extension_id"
|
|
gnome-shell-extension-installer --yes $extension_id
|
|
done
|
|
|
|
log "Restarting gnome shell"
|
|
killall -3 gnome-shell
|
|
|
|
POST_INSTALL+=("gnome: enable gnome extensions")
|
|
}
|
|
|
|
setup_go() {
|
|
package_install \
|
|
go \
|
|
|
|
}
|
|
|
|
setup_grub_theme() {
|
|
package_install \
|
|
grub-theme-vimix \
|
|
|
|
}
|
|
|
|
setup_inkscape() {
|
|
package_install \
|
|
inkscape \
|
|
|
|
}
|
|
|
|
setup_java() {
|
|
package_install \
|
|
intellij-idea-community-edition `# java development` \
|
|
jdk `# oracle java development kit` \
|
|
jdk8 `# ` \
|
|
|
|
}
|
|
|
|
setup_kdenlive() {
|
|
package_install \
|
|
kdenlive-appimage \
|
|
|
|
}
|
|
|
|
setup_keyboard() {
|
|
package_install \
|
|
ibus-hangul \
|
|
|
|
POST_INSTALL+=("keyboard: setup korean keyboard and reboot")
|
|
}
|
|
|
|
setup_local() {
|
|
# setup for applications in second drive
|
|
# add to application menu
|
|
# office 2019 wine
|
|
|
|
if [[ -d /media/pomp/data/programs/dnSpy-net-win32 ]]; then
|
|
log "dnspy"
|
|
fi
|
|
|
|
if [[ -d /media/pomp/data/programs/amidst ]]; then
|
|
log "amidst"
|
|
fi
|
|
|
|
if [[ -d /media/pomp/data/programs/mcaselector ]]; then
|
|
log "mcaselector"
|
|
fi
|
|
|
|
if [[ -d /media/pomp/data/programs/mineways ]]; then
|
|
log "mineways"
|
|
fi
|
|
|
|
if [[ -d /media/pomp/data/programs/tor-browser ]]; then
|
|
log "tor"
|
|
fi
|
|
|
|
# krunker
|
|
# --no-sandbox
|
|
}
|
|
|
|
setup_middleclickpaste() {
|
|
:
|
|
# make it autostart
|
|
}
|
|
|
|
setup_minecraft() {
|
|
package_install \
|
|
minecraft-launcher `# ` \
|
|
worldpainter `# ` \
|
|
minecraft-overviewer `# ` \
|
|
|
|
# mcaselector (/usr/lib/jvm/java-15-openjdk/bin/java --module-path /media/pomp/data/master_folder/programming/java/javafx-sdk-16/lib --add-modules ALL-MODULE-PATH -jar /usr/share/java/mcaselector.jar)
|
|
}
|
|
|
|
setup_node() {
|
|
package_install \
|
|
nodejs `# ` \
|
|
npm `# javascript development` \
|
|
deno `# node++ thingy` \
|
|
|
|
# https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally
|
|
# export PATH="$(yarn global bin):$PATH"
|
|
}
|
|
|
|
setup_obs() {
|
|
package_install \
|
|
obs-plugin-input-overlay-bin `# show inputs in OBS` \
|
|
obs-studio `# screen recording and streaming` \
|
|
|
|
}
|
|
|
|
setup_optimus_manager() {
|
|
# Not using power switching
|
|
# read this wiki[1] about power management with acpi call for more information
|
|
# [1] https://github.com/Askannz/optimus-manager/wiki/A-guide--to-power-management-options#configuration-4--acpi_call
|
|
|
|
package_install \
|
|
gwe `# nvidia GPU overclocking https://gitlab.com/leinardi/gwe` \
|
|
optimus-manager `# https://github.com/Askannz/optimus-manager` \
|
|
optimus-manager-qt `# https://github.com/Shatur/optimus-manager-qt` \
|
|
|
|
# launch on startup
|
|
# nvidia as default
|
|
|
|
# Performance: 265, 750
|
|
# Energy Saver: -155, -365
|
|
}
|
|
|
|
setup_osu() {
|
|
package_install \
|
|
osu \
|
|
|
|
# https://akatsuki.pw/doc/linux
|
|
}
|
|
|
|
setup_plymouth() {
|
|
# must be done after optimus
|
|
# https://wiki.archlinux.org/title/plymouth
|
|
|
|
package_install \
|
|
plymouth `# ` \
|
|
gdm-plymouth-prime `# ` \
|
|
plymouth-theme-arch-logo `# ` \
|
|
|
|
}
|
|
|
|
setup_steam() {
|
|
package_install \
|
|
steam-manjaro \
|
|
|
|
# change steam library directory (/media/pomp/data/programs/SteamLibrary)
|
|
# enable steam proton play
|
|
}
|
|
|
|
setup_shfmt() {
|
|
:
|
|
}
|
|
|
|
setup_unity() {
|
|
package_install \
|
|
unityhub \
|
|
|
|
# editors location for unity hub (`/media/pomp/data/programs/Unity Hub/Unity Editors`)
|
|
# vscode setup
|
|
}
|
|
|
|
setup_user_directories() {
|
|
:
|
|
# edit `~/.config/user-dirs.dirs`:
|
|
|
|
# XDG_DESKTOP_DIR="$HOME/Desktop"
|
|
# XDG_DOWNLOAD_DIR="/media/pomp/data/Downloads"
|
|
# XDG_TEMPLATES_DIR="$HOME/Templates"
|
|
# XDG_PUBLICSHARE_DIR="$HOME/Public"
|
|
# XDG_DOCUMENTS_DIR="/media/pomp/data/Documents"
|
|
# XDG_MUSIC_DIR="/media/pomp/data/Music"
|
|
# XDG_PICTURES_DIR="/media/pomp/data/Pictures"
|
|
# XDG_VIDEOS_DIR="/media/pomp/data/Videos"
|
|
}
|
|
|
|
setup_virtualbox() {
|
|
# https://wiki.manjaro.org/index.php/VirtualBox
|
|
|
|
package_install \
|
|
virtualbox \
|
|
linux510-virtualbox-host-modules \
|
|
virtualbox-ext-oracle \
|
|
|
|
sudo vboxreload
|
|
}
|
|
|
|
setup_vscode() {
|
|
package_install \
|
|
visual-studio-code-bin \
|
|
|
|
POST_INSTALL+=("vscode: log in")
|
|
}
|
|
|
|
setup_vim() {
|
|
package_install \
|
|
vim \
|
|
|
|
}
|
|
|
|
setup_vlc() {
|
|
package_install \
|
|
vlc \
|
|
|
|
}
|
|
|
|
setup_wine() {
|
|
package_install \
|
|
wine \
|
|
wine-gecko \
|
|
wine-mono \
|
|
winetricks \
|
|
|
|
# - `WINEARCH=win32 WINEPREFIX=~/.win32/ winecfg`
|
|
# - `winetricks allfonts`
|
|
# - `winetricks settings fontsmooth=rgb`
|
|
}
|
|
|
|
setup_wireshark() {
|
|
package_install \
|
|
wireshark-gtk2 \
|
|
|
|
sudo usermod -a -G wireshark $USER
|
|
POST_INSTALL+=("wireshark: reboot")
|
|
}
|
|
|
|
setup_wps_office() {
|
|
package_install \
|
|
wps-office \
|
|
ttf-wps-fonts \
|
|
|
|
}
|
|
|
|
setup_zoom() {
|
|
package_install \
|
|
zoom \
|
|
|
|
}
|
|
|
|
setup() {
|
|
# uncomment setup functions that you want to run
|
|
|
|
# this does absolutely nothing.
|
|
# this is only here to prevent bash syntax error
|
|
cat /dev/null
|
|
|
|
# setup_blender
|
|
# setup_discord
|
|
# setup_gimp
|
|
# setup_gnome
|
|
# setup_go
|
|
# setup_inkscape
|
|
# setup_kdenlive
|
|
# setup_obs
|
|
# setup_vim
|
|
# setup_virtualbox
|
|
# setup_vlc
|
|
# setup_vscode
|
|
# setup_wireshark
|
|
# setup_wps_office
|
|
# setup_zoom
|
|
}
|
|
|
|
# #################### [ START ] ####################
|
|
|
|
cd "$SCRIPT_DIR" || {
|
|
error "FAILED TO FIND SCRIPT DIRECTORY"
|
|
exit
|
|
}
|
|
|
|
echo
|
|
warn_no_label "NOTICE"
|
|
warn_no_label "This is not a completely hands off process."
|
|
warn_no_label "You need to monitor the process and take appropriate actions."
|
|
echo
|
|
|
|
log_no_label "working directory: $RESET$BOLD$PWD"
|
|
echo
|
|
|
|
# https://stackoverflow.com/a/1885534/12979111
|
|
read -p "Press (y) to continue. Press any other key to exit: " -n 1 -r
|
|
if [[ $REPLY =~ ^[^Yy]$ ]]; then
|
|
echo
|
|
log "canceled"
|
|
exit
|
|
fi
|
|
|
|
echo
|
|
|
|
# #################### [ TEST ] ####################
|
|
# Tests if script is ready to be executed
|
|
# some stuff has to be done manually
|
|
|
|
title "TEST"
|
|
log "testing if script is ready to be exdecuted"
|
|
|
|
if [[ ! $EUID -ne 0 ]]; then
|
|
error "DO NOT RUN THIS SCRIPT AS ROOT"
|
|
exit 1
|
|
fi
|
|
|
|
# check partition
|
|
|
|
# check if $RESET$BOLD/media/pomp/data$GREEN exists in fstab and is mounted
|
|
|
|
# check if OS is manjaro
|
|
|
|
echo
|
|
echo
|
|
log "TEST phase complete!"
|
|
|
|
# #################### [ MAIN ] ####################
|
|
|
|
title "MAIN"
|
|
|
|
setup
|
|
|
|
# #################### [ DONE ] ####################
|
|
# print some info after installation
|
|
|
|
title "DONE"
|
|
|
|
log_no_label "installation complete!"
|
|
echo
|
|
|
|
if [ ! ${#POST_INSTALL[@]} -eq 0 ]; then
|
|
log_no_label "now:"
|
|
|
|
for doWhat in "${POST_INSTALL[@]}"; do
|
|
log_no_label " - $doWhat"
|
|
done
|
|
fi
|