I don't use it anyway
This commit is contained in:
parent
081dc5ccc1
commit
26ece42965
394
install.sh
394
install.sh
@ -1,394 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Usage:
|
||||
#
|
||||
# sh install.sh
|
||||
#
|
||||
# Environment variables: VERBOSE, CP, LN, MKDIR, RM, DIRNAME.
|
||||
#
|
||||
# env VERBOSE=1 sh install.sh
|
||||
#
|
||||
# DO NOT EDIT THIS FILE
|
||||
#
|
||||
# This file is generated by rcm(7) as:
|
||||
#
|
||||
# rcup -B 0 -g
|
||||
#
|
||||
# To update it, re-run the above command.
|
||||
#
|
||||
: ${VERBOSE:=0}
|
||||
: ${CP:=/bin/cp}
|
||||
: ${LN:=/bin/ln}
|
||||
: ${MKDIR:=/bin/mkdir}
|
||||
: ${RM:=/bin/rm}
|
||||
: ${DIRNAME:=/usr/bin/dirname}
|
||||
verbose() {
|
||||
if [ "$VERBOSE" -gt 0 ]; then
|
||||
echo "$@"
|
||||
fi
|
||||
}
|
||||
handle_file_cp() {
|
||||
if [ -e "$2" ]; then
|
||||
printf "%s " "overwrite $2? [yN]"
|
||||
read overwrite
|
||||
case "$overwrite" in
|
||||
y)
|
||||
$RM -rf "$2"
|
||||
;;
|
||||
*)
|
||||
echo "skipping $2"
|
||||
return
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
verbose "'$1' -> '$2'"
|
||||
$MKDIR -p "$($DIRNAME "$2")"
|
||||
$CP -R "$1" "$2"
|
||||
}
|
||||
handle_file_ln() {
|
||||
if [ -e "$2" ]; then
|
||||
printf "%s " "overwrite $2? [yN]"
|
||||
read overwrite
|
||||
case "$overwrite" in
|
||||
y)
|
||||
$RM -rf "$2"
|
||||
;;
|
||||
*)
|
||||
echo "skipping $2"
|
||||
return
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
verbose "'$1' -> '$2'"
|
||||
$MKDIR -p "$($DIRNAME "$2")"
|
||||
$LN -sf "$1" "$2"
|
||||
}
|
||||
handle_file_ln "/home/krsh/.dotfiles/ackrc" "/home/krsh/.ackrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/agignore" "/home/krsh/.agignore"
|
||||
handle_file_ln "/home/krsh/.dotfiles/ansible.cfg" "/home/krsh/.ansible.cfg"
|
||||
handle_file_ln "/home/krsh/.dotfiles/bundle/config" "/home/krsh/.bundle/config"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/alacritty/alacritty.yml" "/home/krsh/.config/alacritty/alacritty.yml"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/direnv/direnvrc" "/home/krsh/.config/direnv/direnvrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/completions/fisher.fish" "/home/krsh/.config/fish/completions/fisher.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/completions/kitty.fish" "/home/krsh/.config/fish/completions/kitty.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/completions/task.fish" "/home/krsh/.config/fish/completions/task.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/conf.d/aliases.fish" "/home/krsh/.config/fish/conf.d/aliases.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/conf.d/fzf.fish" "/home/krsh/.config/fish/conf.d/fzf.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/conf.d/fzf_key_bindings.fish" "/home/krsh/.config/fish/conf.d/fzf_key_bindings.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/config.fish" "/home/krsh/.config/fish/config.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/fishfile" "/home/krsh/.config/fish/fishfile"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/fish_variables" "/home/krsh/.config/fish/fish_variables"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/fisher.fish" "/home/krsh/.config/fish/functions/fisher.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/fish_prompt.fish" "/home/krsh/.config/fish/functions/fish_prompt.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/fish_right_prompt.fish" "/home/krsh/.config/fish/functions/fish_right_prompt.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/fuck.fish" "/home/krsh/.config/fish/functions/fuck.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_cd.fish" "/home/krsh/.config/fish/functions/__fzf_cd.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzfcmd.fish" "/home/krsh/.config/fish/functions/__fzfcmd.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_complete.fish" "/home/krsh/.config/fish/functions/__fzf_complete.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_complete_preview.fish" "/home/krsh/.config/fish/functions/__fzf_complete_preview.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_find_file.fish" "/home/krsh/.config/fish/functions/__fzf_find_file.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_get_dir.fish" "/home/krsh/.config/fish/functions/__fzf_get_dir.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_open.fish" "/home/krsh/.config/fish/functions/__fzf_open.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_parse_commandline.fish" "/home/krsh/.config/fish/functions/__fzf_parse_commandline.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/__fzf_reverse_isearch.fish" "/home/krsh/.config/fish/functions/__fzf_reverse_isearch.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/gh.fish" "/home/krsh/.config/fish/functions/gh.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/hors.fish" "/home/krsh/.config/fish/functions/hors.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/spark.fish" "/home/krsh/.config/fish/functions/spark.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/sudosu.fish" "/home/krsh/.config/fish/functions/sudosu.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/su.fish" "/home/krsh/.config/fish/functions/su.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fish/functions/time.fish" "/home/krsh/.config/fish/functions/time.fish"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/fontconfig/fonts.conf" "/home/krsh/.config/fontconfig/fonts.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/htop/htoprc" "/home/krsh/.config/htop/htoprc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/i3/bg.jpg" "/home/krsh/.config/i3/bg.jpg"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/i3/config" "/home/krsh/.config/i3/config"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/i3status/config" "/home/krsh/.config/i3status/config"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-3024-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-3024-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-3024.conf" "/home/krsh/.config/kitty/colors/base16/base16-3024.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-apathy-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-apathy-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-apathy.conf" "/home/krsh/.config/kitty/colors/base16/base16-apathy.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-ashes-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-ashes-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-ashes.conf" "/home/krsh/.config/kitty/colors/base16/base16-ashes.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-cave-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-cave-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-cave.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-cave.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-cave-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-cave-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-cave-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-cave-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-dune-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-dune-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-dune.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-dune.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-dune-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-dune-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-dune-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-dune-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-estuary-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-estuary-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-estuary.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-estuary.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-estuary-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-estuary-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-estuary-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-estuary-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-forest-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-forest-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-forest.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-forest.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-forest-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-forest-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-forest-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-forest-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-heath-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-heath-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-heath.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-heath.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-heath-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-heath-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-heath-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-heath-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-lakeside-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-lakeside-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-lakeside.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-lakeside.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-lakeside-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-lakeside-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-lakeside-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-lakeside-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-plateau-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-plateau-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-plateau.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-plateau.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-plateau-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-plateau-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-plateau-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-plateau-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-savanna-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-savanna-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-savanna.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-savanna.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-savanna-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-savanna-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-savanna-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-savanna-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-seaside-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-seaside-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-seaside.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-seaside.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-seaside-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-seaside-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-seaside-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-seaside-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-sulphurpool-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-sulphurpool-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-sulphurpool.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-sulphurpool.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-sulphurpool-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-sulphurpool-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-atelier-sulphurpool-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-atelier-sulphurpool-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-bespin-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-bespin-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-bespin.conf" "/home/krsh/.config/kitty/colors/base16/base16-bespin.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-bathory-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-bathory-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-bathory.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-bathory.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-burzum-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-burzum-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-burzum.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-burzum.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-dark-funeral-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-dark-funeral-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-dark-funeral.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-dark-funeral.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-gorgoroth-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-gorgoroth-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-gorgoroth.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-gorgoroth.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-immortal-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-immortal-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-immortal.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-immortal.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-khold-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-khold-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-khold.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-khold.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-marduk-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-marduk-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-marduk.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-marduk.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-mayhem-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-mayhem-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-mayhem.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-mayhem.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-nile-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-nile-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-nile.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-nile.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-venom-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-venom-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-black-metal-venom.conf" "/home/krsh/.config/kitty/colors/base16/base16-black-metal-venom.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brewer-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-brewer-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brewer.conf" "/home/krsh/.config/kitty/colors/base16/base16-brewer.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-bright-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-bright-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-bright.conf" "/home/krsh/.config/kitty/colors/base16/base16-bright.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brogrammer-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-brogrammer-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brogrammer.conf" "/home/krsh/.config/kitty/colors/base16/base16-brogrammer.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brushtrees-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-brushtrees-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brushtrees.conf" "/home/krsh/.config/kitty/colors/base16/base16-brushtrees.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brushtrees-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-brushtrees-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-brushtrees-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-brushtrees-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-chalk-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-chalk-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-chalk.conf" "/home/krsh/.config/kitty/colors/base16/base16-chalk.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-circus-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-circus-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-circus.conf" "/home/krsh/.config/kitty/colors/base16/base16-circus.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-classic-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-classic-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-classic-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-classic-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-classic-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-classic-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-classic-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-classic-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-codeschool-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-codeschool-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-codeschool.conf" "/home/krsh/.config/kitty/colors/base16/base16-codeschool.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-cupcake-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-cupcake-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-cupcake.conf" "/home/krsh/.config/kitty/colors/base16/base16-cupcake.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-cupertino-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-cupertino-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-cupertino.conf" "/home/krsh/.config/kitty/colors/base16/base16-cupertino.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-darktooth-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-darktooth-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-darktooth.conf" "/home/krsh/.config/kitty/colors/base16/base16-darktooth.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-default-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-default-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-default-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-default-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-default-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-default-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-default-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-default-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-dracula-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-dracula-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-dracula.conf" "/home/krsh/.config/kitty/colors/base16/base16-dracula.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-eighties-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-eighties-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-eighties.conf" "/home/krsh/.config/kitty/colors/base16/base16-eighties.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-embers-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-embers-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-embers.conf" "/home/krsh/.config/kitty/colors/base16/base16-embers.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-flat-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-flat-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-flat.conf" "/home/krsh/.config/kitty/colors/base16/base16-flat.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-github-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-github-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-github.conf" "/home/krsh/.config/kitty/colors/base16/base16-github.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-google-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-google-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-google-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-google-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-google-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-google-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-google-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-google-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-grayscale-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-grayscale-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-grayscale-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-grayscale-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-grayscale-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-grayscale-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-grayscale-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-grayscale-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-greenscreen-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-greenscreen-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-greenscreen.conf" "/home/krsh/.config/kitty/colors/base16/base16-greenscreen.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-hard-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-hard-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-hard.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-hard.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-medium-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-medium-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-medium.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-medium.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-pale-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-pale-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-pale.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-pale.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-soft-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-soft-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-dark-soft.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-dark-soft.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-light-hard-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-light-hard-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-light-hard.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-light-hard.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-light-medium-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-light-medium-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-light-medium.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-light-medium.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-light-soft-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-light-soft-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-gruvbox-light-soft.conf" "/home/krsh/.config/kitty/colors/base16/base16-gruvbox-light-soft.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-harmonic-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-harmonic-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-harmonic-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-harmonic-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-harmonic-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-harmonic-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-harmonic-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-harmonic-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-hopscotch-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-hopscotch-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-hopscotch.conf" "/home/krsh/.config/kitty/colors/base16/base16-hopscotch.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-icy-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-icy-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-icy.conf" "/home/krsh/.config/kitty/colors/base16/base16-icy.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-irblack-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-irblack-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-irblack.conf" "/home/krsh/.config/kitty/colors/base16/base16-irblack.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-isotope-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-isotope-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-isotope.conf" "/home/krsh/.config/kitty/colors/base16/base16-isotope.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-macintosh-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-macintosh-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-macintosh.conf" "/home/krsh/.config/kitty/colors/base16/base16-macintosh.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-marrakesh-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-marrakesh-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-marrakesh.conf" "/home/krsh/.config/kitty/colors/base16/base16-marrakesh.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-materia-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-materia-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-materia.conf" "/home/krsh/.config/kitty/colors/base16/base16-materia.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material.conf" "/home/krsh/.config/kitty/colors/base16/base16-material.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-darker-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-darker-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-darker.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-darker.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-lighter-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-lighter-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-lighter.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-lighter.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-palenight-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-palenight-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-palenight.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-palenight.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-vivid-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-vivid-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-material-vivid.conf" "/home/krsh/.config/kitty/colors/base16/base16-material-vivid.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-mellow-purple-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-mellow-purple-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-mellow-purple.conf" "/home/krsh/.config/kitty/colors/base16/base16-mellow-purple.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-mexico-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-mexico-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-mexico-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-mexico-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-mocha-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-mocha-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-mocha.conf" "/home/krsh/.config/kitty/colors/base16/base16-mocha.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-monokai-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-monokai-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-monokai.conf" "/home/krsh/.config/kitty/colors/base16/base16-monokai.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-nord-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-nord-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-nord.conf" "/home/krsh/.config/kitty/colors/base16/base16-nord.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-ocean-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-ocean-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-ocean.conf" "/home/krsh/.config/kitty/colors/base16/base16-ocean.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-oceanicnext-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-oceanicnext-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-oceanicnext.conf" "/home/krsh/.config/kitty/colors/base16/base16-oceanicnext.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-onedark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-onedark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-onedark.conf" "/home/krsh/.config/kitty/colors/base16/base16-onedark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-one-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-one-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-one-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-one-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-outrun-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-outrun-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-outrun-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-outrun-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-paraiso-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-paraiso-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-paraiso.conf" "/home/krsh/.config/kitty/colors/base16/base16-paraiso.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-phd-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-phd-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-phd.conf" "/home/krsh/.config/kitty/colors/base16/base16-phd.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-pico-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-pico-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-pico.conf" "/home/krsh/.config/kitty/colors/base16/base16-pico.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-pop-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-pop-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-pop.conf" "/home/krsh/.config/kitty/colors/base16/base16-pop.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-porple-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-porple-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-porple.conf" "/home/krsh/.config/kitty/colors/base16/base16-porple.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-railscasts-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-railscasts-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-railscasts.conf" "/home/krsh/.config/kitty/colors/base16/base16-railscasts.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-rebecca-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-rebecca-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-rebecca.conf" "/home/krsh/.config/kitty/colors/base16/base16-rebecca.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-seti-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-seti-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-seti.conf" "/home/krsh/.config/kitty/colors/base16/base16-seti.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-shapeshifter-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-shapeshifter-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-shapeshifter.conf" "/home/krsh/.config/kitty/colors/base16/base16-shapeshifter.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-snazzy-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-snazzy-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-snazzy.conf" "/home/krsh/.config/kitty/colors/base16/base16-snazzy.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-solarflare-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-solarflare-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-solarflare.conf" "/home/krsh/.config/kitty/colors/base16/base16-solarflare.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-solarized-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-solarized-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-solarized-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-solarized-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-solarized-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-solarized-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-solarized-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-solarized-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-spacemacs-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-spacemacs-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-spacemacs.conf" "/home/krsh/.config/kitty/colors/base16/base16-spacemacs.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-summerfruit-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-summerfruit-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-summerfruit-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-summerfruit-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-summerfruit-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-summerfruit-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-summerfruit-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-summerfruit-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-tomorrow-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-tomorrow-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-tomorrow.conf" "/home/krsh/.config/kitty/colors/base16/base16-tomorrow.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-tomorrow-night-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-tomorrow-night-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-tomorrow-night.conf" "/home/krsh/.config/kitty/colors/base16/base16-tomorrow-night.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-tube-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-tube-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-tube.conf" "/home/krsh/.config/kitty/colors/base16/base16-tube.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-twilight-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-twilight-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-twilight.conf" "/home/krsh/.config/kitty/colors/base16/base16-twilight.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-unikitty-dark-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-unikitty-dark-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-unikitty-dark.conf" "/home/krsh/.config/kitty/colors/base16/base16-unikitty-dark.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-unikitty-light-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-unikitty-light-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-unikitty-light.conf" "/home/krsh/.config/kitty/colors/base16/base16-unikitty-light.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-woodland-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-woodland-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-woodland.conf" "/home/krsh/.config/kitty/colors/base16/base16-woodland.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-xcode-dusk-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-xcode-dusk-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-xcode-dusk.conf" "/home/krsh/.config/kitty/colors/base16/base16-xcode-dusk.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-zenburn-256.conf" "/home/krsh/.config/kitty/colors/base16/base16-zenburn-256.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/colors/base16/base16-zenburn.conf" "/home/krsh/.config/kitty/colors/base16/base16-zenburn.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/kitty/kitty.conf" "/home/krsh/.config/kitty/kitty.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/mutt/colors" "/home/krsh/.config/mutt/colors"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/mutt/colors-gruvbox-shuber-extended.muttrc" "/home/krsh/.config/mutt/colors-gruvbox-shuber-extended.muttrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/mutt/colors-gruvbox-shuber.muttrc" "/home/krsh/.config/mutt/colors-gruvbox-shuber.muttrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/mutt/mailcap" "/home/krsh/.config/mutt/mailcap"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/mutt/muttrc" "/home/krsh/.config/mutt/muttrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/newsboat/config" "/home/krsh/.config/newsboat/config"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/nvim/coc-settings.json" "/home/krsh/.config/nvim/coc-settings.json"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/nvim/init.vim" "/home/krsh/.config/nvim/init.vim"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/qutebrowser/config.py" "/home/krsh/.config/qutebrowser/config.py"
|
||||
handle_file_ln "/home/krsh/.dotfiles/config/ranger/rc.conf" "/home/krsh/.config/ranger/rc.conf"
|
||||
handle_file_ln "/home/krsh/.dotfiles/envrc" "/home/krsh/.envrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/gemrc" "/home/krsh/.gemrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/gitconfig" "/home/krsh/.gitconfig"
|
||||
handle_file_ln "/home/krsh/.dotfiles/gitignore_global" "/home/krsh/.gitignore_global"
|
||||
handle_file_ln "/home/krsh/.dotfiles/inputrc" "/home/krsh/.inputrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/install.sh" "/home/krsh/.install.sh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/cfg_kludges.lua" "/home/krsh/.notion/cfg_kludges.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/cfg_notioncore.lua" "/home/krsh/.notion/cfg_notioncore.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/cfg_notion.lua" "/home/krsh/.notion/cfg_notion.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/cfg_statusbar.lua" "/home/krsh/.notion/cfg_statusbar.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/look_base16.lua" "/home/krsh/.notion/look_base16.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/look_simpleblue.lua" "/home/krsh/.notion/look_simpleblue.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_battery.lua" "/home/krsh/.notion/statusd_battery.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_cpufreq.lua" "/home/krsh/.notion/statusd_cpufreq.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_mem.lua" "/home/krsh/.notion/statusd_mem.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_pomodoro.lua" "/home/krsh/.notion/statusd_pomodoro.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_taskwarrior.lua" "/home/krsh/.notion/statusd_taskwarrior.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_timeledger" "/home/krsh/.notion/statusd_timeledger"
|
||||
handle_file_ln "/home/krsh/.dotfiles/notion/statusd_timelogger.lua" "/home/krsh/.notion/statusd_timelogger.lua"
|
||||
handle_file_ln "/home/krsh/.dotfiles/profile" "/home/krsh/.profile"
|
||||
handle_file_ln "/home/krsh/.dotfiles/psqlrc" "/home/krsh/.psqlrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/railsrc" "/home/krsh/.railsrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/README.md" "/home/krsh/.README.md"
|
||||
handle_file_ln "/home/krsh/.dotfiles/reek.yml" "/home/krsh/.reek.yml"
|
||||
handle_file_ln "/home/krsh/.dotfiles/rgignore" "/home/krsh/.rgignore"
|
||||
handle_file_ln "/home/krsh/.dotfiles/rubocop-old.yml" "/home/krsh/.rubocop-old.yml"
|
||||
handle_file_ln "/home/krsh/.dotfiles/rubocop.yml" "/home/krsh/.rubocop.yml"
|
||||
handle_file_ln "/home/krsh/.dotfiles/ruby-lint.yml" "/home/krsh/.ruby-lint.yml"
|
||||
handle_file_ln "/home/krsh/.dotfiles/screenrc" "/home/krsh/.screenrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/taskrc" "/home/krsh/.taskrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/vimrc" "/home/krsh/.vimrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/xinitrc" "/home/krsh/.xinitrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/Xresources" "/home/krsh/.Xresources"
|
||||
handle_file_ln "/home/krsh/.dotfiles/Xresources.d/ansi-us-colemak-dh-z.xmodmap" "/home/krsh/.Xresources.d/ansi-us-colemak-dh-z.xmodmap"
|
||||
handle_file_ln "/home/krsh/.dotfiles/Xresources.d/base16-gruvbox-dark-hard-256" "/home/krsh/.Xresources.d/base16-gruvbox-dark-hard-256"
|
||||
handle_file_ln "/home/krsh/.dotfiles/Xresources.d/st" "/home/krsh/.Xresources.d/st"
|
||||
handle_file_ln "/home/krsh/.dotfiles/Xresources.d/xmodmap.orig" "/home/krsh/.Xresources.d/xmodmap.orig"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zprofile" "/home/krsh/.zprofile"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshenv" "/home/krsh/.zshenv"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc" "/home/krsh/.zshrc"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/aliases.zsh" "/home/krsh/.zshrc.d/aliases.zsh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/env.zsh" "/home/krsh/.zshrc.d/env.zsh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/locale.zsh" "/home/krsh/.zshrc.d/locale.zsh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/paths.zsh" "/home/krsh/.zshrc.d/paths.zsh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/rbenv.zsh" "/home/krsh/.zshrc.d/rbenv.zsh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/rust.zsh" "/home/krsh/.zshrc.d/rust.zsh"
|
||||
handle_file_ln "/home/krsh/.dotfiles/zshrc.d/ssh-agent.zsh" "/home/krsh/.zshrc.d/ssh-agent.zsh"
|
||||
Loading…
Reference in New Issue
Block a user