Migrate to chezmoi

Move config files from config to chezmoi
Add script to auto install packages with DNF and Cargo
This commit is contained in:
Alexander Navarro 2024-03-01 20:25:09 -03:00
parent 110e0882c6
commit 224c7ed45c
1654 changed files with 470035 additions and 51 deletions

View file

@ -1,18 +0,0 @@
#!/bin/sh
# Five arguments are passed to the file:
# (1) current file name
# (2) width
# (3) height
# (4) horizontal position
# (5) vertical position of preview pane
case "$1" in
jpg | jpeg | png) vimiv "$1" ;;
*.tar*) tar tf "$1" ;;
*.zip) unzip -l "$1" ;;
*.rar) unrar l "$1" ;;
*.7z) 7z l "$1" ;;
*.pdf) pdftotext "$1" - ;;
*) bat --force-colorization --line-range ":$3" --pager never --terminal-width "$2" "$1" ;;
esac