reformat things

This commit is contained in:
Cameron Miller 2021-11-09 20:03:10 +00:00
parent fea0355b30
commit 2363031ff4

View File

@ -1,5 +1,4 @@
#!/bin/bash #!/bin/bash
# -*- ENCODING: UTF-8 -*-
## First First Off, Get pacman's sources up to date ## First First Off, Get pacman's sources up to date
sudo pacman -Syu sudo pacman -Syu
@ -25,38 +24,41 @@
### Development ### Development
## Teminal Shell -- Choose the one you feel most comfortable with, or add your own. ## Teminal Shell -- Choose the one you feel most comfortable with, or add your own.
# BASH: If you'd prefer to use bash, keep everything below commented out and run chsh just to double check you're using bash # BASH: If you'd prefer to use bash, keep everything below commented out and run chsh just to double
# Manjaro users will need to go into Konsole and change the default profile to use bash instead of zsh so Konsole and Yakuake use that instead. # check you're using bash.
#
# chsh -s $(command -v bash) # chsh -s $(command -v bash)
# ZSH: If you're on Manjaro, Manjaro Pahvo has zsh installed by default, at least as of recently, since Yakuake and Konsole's Profiles # ZSH: If you're using Alacritty, you will have to double check and make sure the default config is using zsh
# seem to be setup to use it, so you only need to change your shell to zsh if it's not done so already, i cannot comment on Pahvo GNOME # instead of bash, because for some installing from the repos defaults it to bash, so i will include a
# or Majaro Ornara (XFCE) though, as i'm a KDE Plasma user. If you're using Alacritty, you will have to double check and make sure the config # basic config file to get you going, you can comment the shell part out to make it use the user's shell.
# is using zsh instead of bash, but i will include a basic config file to get you going. #
# Install it as normal, and change shell to zsh.
# Change Shell to Zsh (likely will do nothing on Manjaro as mentioned above) #
# chsh -s $(command -v zsh) # sudo pacman -S zsh
# chsh -s $(command -v zsh)
# For Everyone else, install it as normal, and change shell to zsh.
# sudo pacman -S zsh
# chsh -s $(command -v zsh)
# FISH: as above, make sure your Alacritty Config is set to use fish instead of bash. # FISH: as above, make sure your Alacritty Config is set to use fish instead of bash.
# sudo pacman -S fish #
# chsh -s $(command -v fish) # Install it as normal, and change shell to fish.
# sudo pacman -S fish
# chsh -s $(command -v fish)
# DASH: as above, make sure your Alacritty Config is set to use fish instead of bash. # DASH: as above, make sure your Alacritty Config is set to use fish instead of bash.
# sudo pacman -S fish #
# chsh -s $(command -v dash) # Install it as normal, and change shell to fish.
# sudo pacman -S fish
# chsh -s $(command -v dash)
## Terminal Emulators -- Choose the one you feel most comfortable with, or add your own. ## Terminal Emulators -- Choose the one you feel most comfortable with, or add your own.
# sudo pacman -S alacritty # Alacritty Terminal # sudo pacman -S alacritty # Alacritty Terminal
# sudo pacman -S rvxt-unicode # Rvxt Unicode Terminal # sudo pacman -S kitty # Kitty Terminal
# sudo pacman -S xterm # Xterm.... Terminal... yeah. # sudo pacman -S rvxt-unicode # Rvxt Unicode Terminal
# # sudo pacman -S xterm # Xterm.... Terminal... yeah.
# sudo pacman -S # Use this line to specify your own terminal emulator, if its not in the repos, check the AUR and use yay to install it #
# sudo pacman -S # Use this line to specify your own terminal emulator, if its not in the repos, check the AUR and use yay to install it
## Text Editors / IDE's -- Stuff like VSCodium and that ## Text Editors / IDE's -- Stuff like VSCodium and that
# sudo pacman -Sy vscodium-bin # VSCodium, the FOSS version of Code that MS builds their Proprietary version atop of, has no MS Tracking and a FOSS extension store called Open-VSX # sudo pacman -Sy vscodium-bin # VSCodium, the FOSS version of Code that MS builds their Proprietary version atop of, has no MS Tracking and a FOSS extension store called Open-VSX