-
Notifications
You must be signed in to change notification settings - Fork 135
Customize the .bashrc
Stephan Raabe edited this page Jul 22, 2024
·
1 revision
The ML4W Dotfiles are shipped with a .bashrc file. If you want to add your configuration e.g., your personal aliases please create the file .bashrc_custom in your HOME directory.
My .bashrc_custom has the following content:
# -----------------------------------------------------
# Custom Aliases
# -----------------------------------------------------
# DEVELOPMENT
alias dotsync="~/dotfiles-versions/dotfiles/.install/dev/sync.sh dotfiles"
The shipped .bashrc file will source your .bashrc_custom if exists:
# -----------------------------------------------------
# LOAD CUSTOM .bashrc_custom
# -----------------------------------------------------
if [ -f ~/.bashrc_custom ] ;then
source ~/.bashrc_custom
fi
- Installation
- Update
- Uninstall
- Installation options
- Installation in a KVM Virtual Machine
- Protect your configuration and customize the installation
- Activate another ML4W Dotfiles installation
- Automate the installation and update
- Using the ML4W Dotfiles on other Distributions
- Hyprland and NVIDIA
- Switch SDL Videodriver between Wayland and X11