diff --git a/config/git/gitconfig b/config/git/gitconfig index d56b994..226a6f4 100644 --- a/config/git/gitconfig +++ b/config/git/gitconfig @@ -1,7 +1,5 @@ [user] email = ale.navarro.parra@gmail.com user = Alexander Navarro -[pull] - rebase = false [init] defaultBranch = main diff --git a/config/git/gitignore b/config/git/gitignore deleted file mode 100644 index 45b7987..0000000 --- a/config/git/gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Package manager locks -*.lock -pnpm-lock.yaml - -# PHP Stuff -vendor -.php-cs-fixer.cache diff --git a/config/git/ignore b/config/git/ignore new file mode 100644 index 0000000..6417329 --- /dev/null +++ b/config/git/ignore @@ -0,0 +1,6 @@ +# Git Worktrees +.worktrees/* + +# PHP Stuff +vendor +.php-cs-fixer.cache diff --git a/config/zsh/aliases/aliases.zsh b/config/zsh/aliases/aliases.zsh index 4623e96..869c485 100644 --- a/config/zsh/aliases/aliases.zsh +++ b/config/zsh/aliases/aliases.zsh @@ -23,14 +23,8 @@ alias \ # Search and Query Files alias grep="rg --sort path --context 3"; -# Pacman -alias \ - pkgu="paru -Syu --removemake --cleanafter --sudoloop --color always" \ - pkgi="paru --skipreview --removemake --cleanafter --sudoloop --color always --needed" \ - pkgr="paru -R" \ - cleanup='sudo pacman -Rns $(pacman -Qtdq)' \ - pkglast="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -25 | nl" - +# Quicly update Stuff +alias vi-ssh="vi ~/.ssh/config" # Query Stuff alias \ diff --git a/scripts/set-random-wallpaper b/scripts/set-random-wallpaper index 0b529df..552aac6 100755 --- a/scripts/set-random-wallpaper +++ b/scripts/set-random-wallpaper @@ -3,8 +3,8 @@ # Original script steal from (specific commit): # https://github.com/lime-desu/dootsfile/blob/58abca63dfd596d4812fcf95567cc3ad63ffbb6f/scripts/set-random-wallpaper.sh -WALLPAPER_DIR=${HOME}/Drives/Stuff/Pictures/Waifus -WALLPAPER_PREFIX="Fondos_PC.*" +WALLPAPER_DIR="${HOME}/Drives/Stuff/Pictures/Wallpapers/Landscape/" +WALLPAPER_PREFIX="" RANDOM_PICTURE=$(fd -apt f "$WALLPAPER_PREFIX" "$WALLPAPER_DIR" | shuf -n 1) CURRENT_DESKTOP="$(echo "$XDG_CURRENT_DESKTOP" | awk '{for (i=1;i<=NF;i++) { $i=toupper(substr($i,1,1)) tolower(substr($i,2)) }}1')" diff --git a/setup/config b/setup/config index ef88ca9..74212d1 100755 --- a/setup/config +++ b/setup/config @@ -8,8 +8,7 @@ cd "$DOTS/config" || exit readarray -t configs < <( fd -d 1 \ --exclude "*.old" \ - --exclude "create*" \ - --exclude "git" + --exclude "create*" ) for dot in "${configs[@]}"; do