A spin of Alpine Linux for my personal usage

Add .profile and update some configs

Changed files
+11
config
alacritty
scripts
+3
config/alacritty/alacritty.toml
··· 7 7 [font] 8 8 normal = { family = "Mononoki Nerd Font", style = "Regular" } 9 9 10 + [terminal] 11 + shell = { program = "/bin/sh", args = ["-l"] } 12 +
+3
install.sh
··· 69 69 mkdir -p ~/.config/ 70 70 cp -r ./.config/* ~/.config/ 71 71 72 + # Copy .profile 73 + cp ./profile ~/.profile 74 + 72 75 # Git configuration 73 76 git config --global init.initialBranch main 74 77
+3
profile
··· 1 + alias neovide="flatpak run dev.neovide.neovide --" 2 + alias sniri="dbus-run-session -- niri --session" 3 +
+2
scripts/rebuild.sh
··· 10 10 ~/.config/waybar \ 11 11 ./config/ 12 12 13 + cp ~/.profile ./profile 14 +