Files
omarchy/install/3-config.sh

25 lines
830 B
Bash
Raw Normal View History

# Copy over Omarchy configs
cp -R ~/.local/share/omarchy/config/* ~/.config/
# Copy over Omarchy applications
2025-06-16 10:18:30 +02:00
mkdir -p ~/.local/share/applications
cp -R ~/.local/share/omarchy/applications/* ~/.local/share/applications/
# Use default bashrc from Omarchy
echo "source ~/.local/share/omarchy/default/bash/rc" >~/.bashrc
2025-06-02 21:22:23 +02:00
# Login directly as user, rely on disk encryption + hyprlock for security
sudo mkdir -p /etc/systemd/system/getty@tty1.service.d
sudo tee /etc/systemd/system/getty@tty1.service.d/override.conf >/dev/null <<EOF
[Service]
ExecStart=
ExecStart=-/usr/bin/agetty --autologin $USER --noclear %I \$TERM
EOF
2025-06-02 21:13:51 +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