From 2363031ff4b358095f8d53b6eeccbe20fd1697ba Mon Sep 17 00:00:00 2001 From: Cameron Miller Date: Tue, 9 Nov 2021 20:03:10 +0000 Subject: [PATCH] reformat things --- postinstall-arch.sh | 50 +++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/postinstall-arch.sh b/postinstall-arch.sh index 835085b..cf4062f 100644 --- a/postinstall-arch.sh +++ b/postinstall-arch.sh @@ -1,5 +1,4 @@ #!/bin/bash -# -*- ENCODING: UTF-8 -*- ## First First Off, Get pacman's sources up to date sudo pacman -Syu @@ -25,38 +24,41 @@ ### Development ## 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 - # 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. + # BASH: If you'd prefer to use bash, keep everything below commented out and run chsh just to double + # check you're using 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 - # 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 - # 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 - # is using zsh instead of bash, but i will include a basic config file to get you going. - - # Change Shell to Zsh (likely will do nothing on Manjaro as mentioned above) - # 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) - + # ZSH: If you're using Alacritty, you will have to double check and make sure the default config is using zsh + # instead of bash, because for some installing from the repos defaults it to bash, so i will include a + # basic config file to get you going, you can comment the shell part out to make it use the user's shell. + # + # 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. - # 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. - # 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. - # sudo pacman -S alacritty # Alacritty Terminal - # 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 alacritty # Alacritty Terminal + # sudo pacman -S kitty # Kitty Terminal + # 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 + ## 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