From 7681cba60ad25fccd4f2b80d5950c879b06e4098 Mon Sep 17 00:00:00 2001 From: ShokiNN Date: Fri, 3 Jan 2020 23:03:48 +0100 Subject: [PATCH] Add kite wrapper to .local/bin; add .local/bin to path --- config.yaml | 4 ++++ dotfiles/local/bin/kite | 3 +++ dotfiles/zshenv_win | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 dotfiles/local/bin/kite 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