diff --git a/config.yaml b/config.yaml index 868e760..ece5f2a 100644 --- a/config.yaml +++ b/config.yaml @@ -98,6 +98,9 @@ dotfiles: f_start_systemd_shell.sh: src: start_systemd_shell.sh dst: ~/start_systemd_shell.sh + f_kite: + src: local/bin/kite + dst: ~/.local/bin/kite profiles: YOETUNHEIMR-wsl: dotfiles: @@ -118,6 +121,7 @@ profiles: - f_c3check - f_zprofile_win - f_start_systemd_shell.sh + - f_kite yoetunheimr: dotfiles: - d_bspwm diff --git a/dotfiles/local/bin/kite b/dotfiles/local/bin/kite new file mode 100755 index 0000000..97fa38e --- /dev/null +++ b/dotfiles/local/bin/kite @@ -0,0 +1,3 @@ +#!/usr/bin/env zsh + +$HOME/.local/share/kite/kited > /dev/null 2>&1 & diff --git a/dotfiles/zshenv_win b/dotfiles/zshenv_win index 6ab06fc..4a0d6ea 100644 --- a/dotfiles/zshenv_win +++ b/dotfiles/zshenv_win @@ -11,7 +11,7 @@ export ANSIBLE_NOCOWS=1 if [ -d "$HOME/.bin" ] ; then export PATH="$HOME/.bin:$PATH" fi -# Includ ~/.local/bin to PATH +# Include ~/.local/bin to PATH if [ -d "$HOME/.local/bin" ] ; then export PATH="$HOME/.local/bin:$PATH" fi