- Add to Path
- Current Configuration
- Old Method
- New Method
- Functions
- Aliases
- Additional Plans
- To Test
- Useful Commands to Remember
- Set up
.bashrc
in the home directory (with hidden files) with thesource ~/.custom_bash_commands.sh
appended to the end- To open the
.bashrc
file, use this command in the Terminal:open .bashrc
- To open the
- Ensure the most up-to-date version of the github repository is added to the user file (with hidden files).
- Open a new terminal as this will not work without the
.bashrc
file being reloaded. - You can also optionally run
source .bashrc
to refresh the.bashrc
file. (orsource .bash_profile
). - There is a .update_commands.sh script that will run at the start of every terminal open that will automatically update to the latest version of the custom_bash_commands.sh file and add it to the correct directory.
- This is done by creating a temporary directory, then initializing and cloning the github repo in it, then copying the file to the correct location, then delete itself.
- This ensures that every time you run the terminal you have the latest version of the custom commands already installed.
- Append the following code to the end of the
.bashrc
file.
###################################################################################################################################################################
# Custom Additions
###################################################################################################################################################################
source ~/.update_commands.sh
source ~/.custom_bash_commands.sh
- This can be done using the
editbash
command after it has been initially installed.
INCOMPLETE A full list of functions will be added here for reference of what the script offers along with a short description.
INCOMPLETE A full list of aliases will be added here for reference of what the script offers along with a short description.
- Install the kitty terminal emulator.
- Adjust the default application settings to
kitty
for terminal emulator. - Set the terminal shortcuts to
Ctrl + Alt + T
for kitty.- In Settings > Shortcuts, add the
kitty
application. - Change the custom shortcut.
- Select 'okay' if it prompts to override Konsole.
- In Settings > Shortcuts, add the
- Change the
.bashrc
file to readsource ~/.test_update_commands.sh
- Run the terminal and verify the testing works by opening the .custom_bash_commands.sh in the user directory.
- Change the
.bashrc
file to readsource ~/.update_commands.sh
if it is not working.
neofetch
: graphically shows system information with a beautiful output and ASCII Art of the Desktop Environment installed on Linux.rsync
: tool to synchronize directories or files.htop
: interactive and real-time view of the processes running on a systembtop
: alternative to htop that has better formatting
ADD
alias fobsidian='find ~/Documents/grymms_grimoires -type f | fzf | xargs -I {} obsidian "obsidian://open?vault=$(basename ~/Documents/grymms_grimoires)&file={}'
alias fobs='fobsidian'