2025-06-02 10:22:28 +02:00
|
|
|
# Copy over Omarchy configs
|
|
|
|
cp -R ~/.local/share/omarchy/config/* ~/.config/
|
|
|
|
|
|
|
|
# Use default bashrc from Omarchy
|
|
|
|
echo "source ~/.local/share/omarchy/default/bash/rc" >~/.bashrc
|
2025-06-02 20:56:40 +02:00
|
|
|
|
2025-06-02 21:13:51 +02:00
|
|
|
# Start Hyprland on first session
|
|
|
|
echo "[[ -z $DISPLAY && $(tty) == /dev/tty1 ]] && exec Hyprland" >~/.bash_profile
|
|
|
|
|
2025-06-02 20:56:40 +02:00
|
|
|
# Set common git aliases
|
|
|
|
git config --global alias.co checkout
|
|
|
|
git config --global alias.br branch
|
|
|
|
git config --global alias.ci commit
|
|
|
|
git config --global alias.st status
|
|
|
|
git config --global pull.rebase true
|