mirror of
https://github.com/shokinn/.files.git
synced 2025-01-18 21:22:25 +00:00
Add kite wrapper to .local/bin; add .local/bin to path
This commit is contained in:
parent
93b204682c
commit
7681cba60a
|
@ -98,6 +98,9 @@ dotfiles:
|
||||||
f_start_systemd_shell.sh:
|
f_start_systemd_shell.sh:
|
||||||
src: start_systemd_shell.sh
|
src: start_systemd_shell.sh
|
||||||
dst: ~/start_systemd_shell.sh
|
dst: ~/start_systemd_shell.sh
|
||||||
|
f_kite:
|
||||||
|
src: local/bin/kite
|
||||||
|
dst: ~/.local/bin/kite
|
||||||
profiles:
|
profiles:
|
||||||
YOETUNHEIMR-wsl:
|
YOETUNHEIMR-wsl:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
|
@ -118,6 +121,7 @@ profiles:
|
||||||
- f_c3check
|
- f_c3check
|
||||||
- f_zprofile_win
|
- f_zprofile_win
|
||||||
- f_start_systemd_shell.sh
|
- f_start_systemd_shell.sh
|
||||||
|
- f_kite
|
||||||
yoetunheimr:
|
yoetunheimr:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- d_bspwm
|
- d_bspwm
|
||||||
|
|
3
dotfiles/local/bin/kite
Executable file
3
dotfiles/local/bin/kite
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
$HOME/.local/share/kite/kited > /dev/null 2>&1 &
|
|
@ -11,7 +11,7 @@ export ANSIBLE_NOCOWS=1
|
||||||
if [ -d "$HOME/.bin" ] ; then
|
if [ -d "$HOME/.bin" ] ; then
|
||||||
export PATH="$HOME/.bin:$PATH"
|
export PATH="$HOME/.bin:$PATH"
|
||||||
fi
|
fi
|
||||||
# Includ ~/.local/bin to PATH
|
# Include ~/.local/bin to PATH
|
||||||
if [ -d "$HOME/.local/bin" ] ; then
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue