chezmoi: init scripts

This commit is contained in:
js0ny 2025-09-27 16:10:43 +01:00
parent c1a63e4658
commit eb31d815ce
6 changed files with 38 additions and 0 deletions

4
.gitignore vendored
View file

@ -48,3 +48,7 @@ common/**/*current*
default.target.wants default.target.wants
nvim-healthcheck.txt nvim-healthcheck.txt
private_pid
private_security
private_fish_variables

View file

@ -0,0 +1,4 @@
#!/bin/sh
# shellcheck shell=sh
sudo cp $CHEZMOI_SOURCE_DIR/dot_config/bash/xdg-compat.sh /etc/profile.d/xdg-compat.sh

View file

@ -0,0 +1,8 @@
#!/bin/sh
mkdir -p "$(bat --config-dir)/themes"
wget -P "$(bat --config-dir)/themes" https://github.com/catppuccin/bat/raw/main/themes/Catppuccin%20Latte.tmTheme
wget -P "$(bat --config-dir)/themes" https://github.com/catppuccin/bat/raw/main/themes/Catppuccin%20Frappe.tmTheme
wget -P "$(bat --config-dir)/themes" https://github.com/catppuccin/bat/raw/main/themes/Catppuccin%20Macchiato.tmTheme
wget -P "$(bat --config-dir)/themes" https://github.com/catppuccin/bat/raw/main/themes/Catppuccin%20Mocha.tmTheme

View file

@ -0,0 +1,6 @@
#!/bin/sh
# shellcheck shell=sh
if command -v nvim > /dev/null 2>&1; then
nvim --headless +checkhealth +"w nvim-healthcheck.txt" +qall
fi

View file

@ -0,0 +1,7 @@
#!/usr/bin/env sh
XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
mkdir -p {{XDG_DATA_HOME}}/rtorrent/session
mkdir -p {{XDG_DATA_HOME}}/rtorrent/watch

View file

@ -0,0 +1,9 @@
#!/bin/sh
XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
mkdir -p $XDG_DATA_HOME/vim/after
mkdir -p $XDG_STATE_HOME/vim/{backup,swap,undo,view}