mar does dotfiles
Find a file
2024-10-05 14:49:49 -07:00
.chezmoidata Update .chezmoidata/arch-packages.toml 2024-05-26 15:26:52 -07:00
.chezmoiexternals Add .chezmoiexternals/amfora.toml 2024-10-05 09:36:45 -07:00
.chezmoiscripts Update .chezmoiscripts/20-pacman.sh 2024-10-02 20:14:30 -07:00
dot_config Update .config/fish/conf.d/10-starship.fish 2024-10-05 14:49:49 -07:00
dot_icons/default feat: Migrate to Chezmoi 2024-04-14 18:41:15 -07:00
dot_local/bin Add .local/bin/figlet-gallery 2024-10-05 12:07:15 -07:00
private_dot_gnupg Update .chezmoi.toml 2024-10-04 21:36:27 -07:00
private_dot_ssh Update .ssh/config 2024-09-28 22:02:32 -07:00
.bw-password.asc Add .bw-password.asc 2024-09-28 10:24:54 -07:00
.chezmoi.toml.tmpl Update .chezmoi.toml 2024-10-05 10:02:21 -07:00
.chezmoiignore Update .chezmoi.toml 2024-10-04 21:36:27 -07:00
.chezmoiremove Update .chezmoi.toml 2024-10-04 21:36:27 -07:00
.gitignore 🐛 fix: Small fixes 2024-04-15 12:32:56 -07:00
.install-bw.sh Update .install-bw.sh 2024-09-28 09:57:28 -07:00
dot_xprofile.tmpl Update .xprofile 2024-10-05 10:40:39 -07:00
dot_Xresources.tmpl Update .chezmoi.toml 2024-08-04 17:20:35 -07:00
README.md Update README.md 2024-04-17 19:26:08 -07:00
tags Update .config/bashrc 2024-10-05 14:22:08 -07:00

mar does dotfiles

Welcome to my dotfiles :)

Feel free to steal what you like, though I'd advise against wholesale using my config. Things are likely to break. At the very least - change the values in dot_config/git/config.local.

I apologize for the disgusting Chezmoi format - I resisted it for ages and then things got complex enough that I needed it.

The branches all contain previous iterations, with the exception of fish-shell which was used to test out using fish as my login shell before committing.

First-Time Setup

GPG makes me want to toss the computer out the window

gpg --full-gen-key
# kind of key: 4
# key size: 4096
# expiration: 0 && y
# real name: punkfairie
# email: 23287005+punkfairie@users.noreply.github.com

sudo -k
chown -R (whoami) "$HOME/.gnupg/"
find "$HOME/.gnupg" -type f -exec chmod 600 {} \;
find "$HOME/.gnupg" -type d -exec chmod 700 {} \;

chezmoi init --apply punkfairie

Arch

pacman -S --needed git base-devel
git clone https://aur.archlinux.org/yay-bin.git
cd yay-bin
makepkg -si
cd ..
rm -rf yay-bin

yay -Syu
yay -S --needed - < ~/.config/packages/arch

gpg --armor --export (get-gpg-key) | copyq copy -

General

Go to https://github.com/settings/keys and add the copied key to your account.

volta install node
topgrade

Themes

GRUB

# /etc/default/grub
GRUB_THEME="/usr/share/grub/themes/catppuccin-<flavor>/theme.txt"

sudo grub-mkconfig -o /boot/grub/grub.cfg

SDDM

TTY

git clone https://github.com/catppuccin/tty.git
cd tty
./generate.sh <flavor> | copyq copy -

Edit /etc/default/grub and append copied content to GRUB_CMDLINE_LINUX.

sudo grub-mkconfig -o /boot/grub/grub.cfg