Wrigs

setup-fedora.sh

Nov 26th, 2022 (edited)
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 11.34 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # Speed up DNF:
  4. sudo nano /etc/dnf/dnf.conf
  5. # Add the following:
  6. fastestmirror=True
  7. max_parallel_downloads=10
  8. defaultyes=True
  9. keepcache=True
  10.  
  11. cd ~/Downloads
  12.  
  13. sudo dnf upgrade -y
  14.  
  15. # Enable RPM Fusion
  16. # https://rpmfusion.org/Configuration
  17. sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  18.  
  19. sudo dnf groupupdate core
  20.  
  21. # Adding Flatpaks
  22. # https://flatpak.org/setup/Fedora
  23. sudo dnf install flatpak
  24. flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
  25.  
  26. # Install Media Codecs
  27. sudo dnf groupupdate multimedia --setop="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
  28. sudo dnf groupupdate sound-and-video
  29.  
  30. # Change Hostname
  31. sudo hostnamectl set-hostname <New_Custom_Name>
  32.  
  33.  
  34. # ==============================================================================
  35. # If using Gnome DE
  36. # ==============================================================================
  37.  
  38. # Install Gnome Tweaks and Gnome Extensions
  39. sudo dnf install gnome-tweaks gnome-extensions-app
  40.  
  41. # Install Pop-Shell
  42. sudo dnf install gnome-shell-extension-pop-shell
  43.  
  44.  
  45. # ==============================================================================
  46. # General Utilities
  47. # ==============================================================================
  48.  
  49. # Install KeepassXC Password Manager
  50. sudo dnf install keepassxc
  51.  
  52. # Install Git
  53. sudo dnf install git
  54.  
  55. # Install Alacritty Terminal
  56. # Use apt instead of dnf if on Debian based distro
  57. sudo dnf install alacritty
  58. mkdir ~/.config/alacritty
  59. wget -O ~/.config/alacritty/alacritty.toml https://pastebin.com/raw/A1G58t6f
  60.  
  61. # Alacritty Themes
  62. mkdir -p ~/.config/alacritty/themes
  63. git clone https://github.com/alacritty/alacritty-theme ~/Downloads/alacritty_themes
  64. mv ~/Downloads/alacritty_themes/themes ~/.config/alacritty
  65. rm -rf ~/Downloads/alacritty_themes
  66.  
  67.  
  68.  
  69. # ==============================================================================
  70. # Install Rofi Program launcher and themes
  71. # ==============================================================================
  72.  
  73. sudo dnf install rofi
  74.  
  75. # Make Rofi themes directory
  76. mkdir -p ~/.config/rofi/
  77. mkdir -p ~/.local/share/rofi/themes/
  78.  
  79. # Clone Rofi theme collection and move to themes directory
  80. git clone https://github.com/lr-tech/rofi-themes-collection.git
  81. mv ./rofi-themes-collection/themes/*.rasi ~/.local/share/rofi/themes/
  82.  
  83. # Run Rofi Theme Selector
  84. # Find theme and press alt-a to select theme
  85. rofi-theme-selector
  86.  
  87.  
  88. # ==============================================================================
  89. # Install Ulauncher if using Gnome X-Org
  90. # ==============================================================================
  91.  
  92. sudo dnf install ulauncher
  93.  
  94. # Make Ulauncher themes directory
  95. mkdir -p ~/.config/ulauncher/user-themes/
  96.  
  97. # Clone ZorinBlue theme
  98. git clone https://github.com/NayamAmarshe/ulauncher-zorinBlueDark/ \
  99.   ~/.config/ulauncher/user-themes/zorin-blue-dark
  100.  
  101. # Clone Eigen-Dark theme
  102. git clone https://github.com/sotsugov/ulauncher-eigen/ \
  103.   ~/.config/ulauncher/user-themes/eigen-dark
  104.  
  105. # Clone Adwaita-Dark theme
  106. git clone https://github.com/gabrbrand/adwaita-dark-ulaucher.git \
  107. ~/.config/ulauncher/user-themes/adwaita-dark-ulaucher
  108.  
  109. # Clone Breeze-Dark theme
  110. git clone https://github.com/rifactor/breeze-dark-ulauncher \
  111.   ~/.config/ulauncher/user-themes/breeze-dark-ulauncher
  112.  
  113. # Clone Matcha-Dark-Azul theme
  114. git clone https://github.com/DaveHigs/Matcha-Dark-Azul-ulauncher.git \
  115.   ~/.config/ulauncher/user-themes/Matcha-Dark-Azul-ulauncher
  116.  
  117. # Clone Libadwaita-Dark theme
  118. git clone https://github.com/kareemkasem/ulauncher-theme-libadwaita-dark \
  119.   ~/.config/ulauncher/user-themes/libadwaita-dark
  120.  
  121.  
  122. # ==============================================================================
  123. # Install fonts for UI
  124. # ==============================================================================
  125.  
  126. # Install San Francisco Display (default for UI)
  127. cd ~/Downloads
  128. wget -O SFUIDisplay.zip https://www.dafontfree.io/wp-content/uploads/download-manager-files/1601920060wpdm_San-Francisco.zip
  129. unzip SFUIDisplay.zip -d SFUIDisplay
  130. sudo cp -r ./SFUIDisplay/'San Francisco'/SFUIDisplay /usr/share/fonts/SFUIDisplay
  131. rm -rf ./SFUIDisplay SFUIDisplay.zip
  132.  
  133. # Install Montserrat font
  134. sudo dnf install font-montserrat
  135.  
  136.  
  137. # ==============================================================================
  138. # Install monospace fonts
  139. # ==============================================================================
  140.  
  141. # Install JetBrains Mono
  142. sudo dnf install -y jetbrains-mono-fonts-all
  143.  
  144. # Install Hasklig font
  145. cd ~/Downloads
  146. wget -O Hasklig.zip https://github.com/i-tu/Hasklig/releases/download/v1.2/Hasklig-1.2.zip
  147. unzip Hasklig.zip -d Hasklig
  148. sudo cp -r ~/Downloads/Hasklig/OTF /usr/share/fonts/Hasklig
  149. rm -rf ~/Downloads/Hasklig Hasklig.zip
  150.  
  151. # Install JetBrains Mono font (manual)
  152. wget -O JetBrainsMono.zip https://download.jetbrains.com/fonts/JetBrainsMono-2.304.zip
  153. unzip JetBrainsMono.zip -d JetBrains
  154. sudo cp -r ./JetBrains/fonts/ttf /usr/share/fonts/JetBrainsMono
  155. rm -rf ~/Downloads/JetBrains JetBrainsMono.zip
  156.  
  157. # Install FiraCode font
  158. wget -O FiraCode.zip https://github.com/tonsky/FiraCode/releases/download/6.2/Fira_Code_v6.2.zip
  159. unzip FiraCode.zip -d FiraCode
  160. sudo cp -r ./FiraCode/ttf /usr/share/fonts/FiraCode
  161. rm -rf ./FiraCode FiraCode.zip
  162.  
  163. # Install SF-Mono font (default monospace)
  164. cd ~/Downloads
  165. wget -O SF-Mono.zip https://github.com/supercomputra/SF-Mono-Font/archive/refs/heads/master.zip
  166. unzip SF-Mono.zip -d SF-Mono
  167. sudo cp ./SF-Mono/SF-Mono-Font-master /usr/share/fonts/SF-Mono
  168. rm -rf ./SF-Mono SF-Mono.zip
  169.  
  170.  
  171. # ==============================================================================
  172. # Install Nerd Fonts
  173. # ==============================================================================
  174.  
  175. # Code New Roman Nerd Font
  176. wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/CodeNewRoman.zip
  177. unzip CodeNewRoman.zip -d CodeNewRoman
  178. sudo cp -r ./CodeNewRoman /usr/share/fonts/CodeNewRoman
  179. rm -rf ./CodeNewRoman CodeNewRoman.zip
  180.  
  181. # Hack Nerd Font
  182. wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/Hack.zip
  183. unzip Hack.zip -d Hack
  184. sudo cp -r ./Hack /usr/share/fonts/Hack
  185. rm -rf ./Hack Hack.zip
  186.  
  187. # Meslo Nerd Font
  188. wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/Meslo.zip
  189. unzip Meslo.zip -d Meslo
  190. sudo cp -r ./Meslo /usr/share/fonts/Meslo
  191. rm -rf ./Meslo Meslo.zip
  192.  
  193. # Recursive Nerd Font
  194. wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/Recursive.zip
  195. unzip Recursive.zip -d Recursive
  196. sudo cp -r ./Recursive /usr/share/fonts/Recursive
  197. rm -rf ./Recursive Recursive.zip
  198.  
  199.  
  200.  
  201. # ==============================================================================
  202. # Programming
  203. # ==============================================================================
  204.  
  205. # Install general programming utilities
  206. sudo dnf install -y clang golang cmake git meld
  207.  
  208. # Install VSCodium  (open source VSCode)
  209. wget https://github.com/VSCodium/vscodium/releases/download/1.73.1.22314/codium-1.73.1.22314-el7.x86_64.rpm
  210. sudo dnf install codium-1.73.1.22314-el7.x86_64.rpm
  211. rm codium-1.73.1.22314-el7.x86_64.rpm
  212.  
  213. # Install Visual Studio Code
  214. sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
  215.  
  216. echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\nautorefresh=1\ntype=rpm-md\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" | sudo tee /etc/yum.repos.d/vscode.repo > /dev/null
  217.  
  218. dnf check-update
  219.  
  220. sudo dnf install code # or code-insiders
  221.  
  222. # Install Geany
  223. sudo dnf install geany geany-plugins-addons geany-plugins-common geany-plugins-geanyctags geany-plugins-geanyvc \
  224. geany-plugins-latex geany-themes geany-plugins-autoclose geany-plugins-codenav geany-plugins-git-changebar \
  225. geany-plugins-lineoperations geany-plugins-markdown geany-plugins-overview
  226.  
  227.  
  228. # ==============================================================================
  229.  
  230. # install curl, if necessary
  231. sudo dnf install curl
  232.  
  233. # installs NVM (Node Version Manager)
  234. curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
  235.  
  236. # download and install Node.js
  237. nvm install 20
  238.  
  239. # verifies the right Node.js version is in the environment
  240. node -v # should print `v20.12.0`
  241.  
  242. # verifies the right NPM version is in the environment
  243. npm -v # should print `10.5.0`
  244.  
  245. # install yarn with npm
  246. sudo npm install yarn -g
  247.  
  248. # install yarn using a bash script (preferred)
  249. curl -o- -L https://yarnpkg.com/install.sh | bash
  250.  
  251. # Install Github CLI
  252. # Install from GH package repository for immediate access to latest releases:
  253. sudo dnf install 'dnf-command(config-manager)'
  254. sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
  255. sudo dnf install gh --repo
  256.  
  257. # Alternatively, install from the community repository
  258. sudo dnf install gh
  259. # Upgrade
  260. sudo dnf update gh
  261.  
  262. # Install Docker
  263. curl -fsSL https://get.docker.com -o get-docker.sh
  264. sh get-docker.sh
  265. sudo usermod -aG docker $USER
  266.  
  267.  
  268. # ==============================================================================
  269. # Science, Math and Education
  270. # ==============================================================================
  271.  
  272. # Install R programming language only
  273. sudo dnf install R
  274.  
  275. # Install R programming language with dependencies
  276. sudo dnf install -y R-core R-core-devel R-java R-java-devel libRmath libRmath-devel
  277.  
  278. # If you have trouble compiling, you may also require some or all of these packages. This is situational:
  279. sudo dnf install libcurl-devel openssl-devel harfbuzz-devel fribidi-devel freetype-devel libpng-devel libjpeg-turbo-devel
  280.  
  281. # Install RStudio
  282. sudo dnf install -y rstudio-desktop
  283.  
  284. # sudo dnf install -y julia sagemath scilab
  285. sudo dnf install -y julia
  286.  
  287. # Essential packages for Jupyter Notebook
  288. sudo dnf install -y python3-notebook mathjax sscg
  289.  
  290. # Install additional and optional Python modules commonly used by data scientists
  291. sudo dnf install -y python3-seaborn python3-lxml python3-basemap python3-scikit-image python3-scikit-learn python3-sympy python3-dask+dataframe python3-nltk
  292.  
  293. # https://fedoramagazine.org/jupyter-and-data-science-in-fedora/
  294. # https://www.redhat.com/sysadmin/install-jupyterlab-linux
  295.  
  296. # Install Qalculate! - the ultimate desktop calculator
  297. sudo dnf install -y qalculate
  298.  
  299. sudo dnf install texlive-scheme-full
  300.  
  301.  
  302. # ==============================================================================
  303. # Web Browsers
  304. # ==============================================================================
  305.  
  306. # Install Waterfox Browser
  307. cd ~/Downloads
  308. wget https://github.com/WaterfoxCo/Waterfox/releases/download/G4.1.1.1/waterfox-G4.1.1.1.en-US.linux-x86_64.tar.bz2
  309. # https://cdn1.waterfox.net/waterfox/releases/G5.1/Linux_x86_64/waterfox-G5.1.tar.bz2
  310. tar -xvf waterfox-G4.1.1.1.en-US.linux-x86_64.tar.bz2
  311. sudo mv waterfox /opt/
  312. wget https://pastebin.com/raw/bYF8aqjr && sudo mv bYF8aqjr /usr/share/applications/Waterfox.desktop
  313.  
  314. # Install Google Chrome
  315. wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
  316. sudo dnf install -y google-chrome-stable_current_x86_64.rpm
  317.  
  318. # Install Brave Browser
  319. curl -fsS https://dl.brave.com/install.sh | sh
  320.  
  321. # Install Chromium Browser
  322. sudo dnf install -y chromium
  323.  
  324.  
Tags: fedora
Add Comment
Please, Sign In to add comment