diff --git a/config.yaml b/config.yaml index 7a721f2..59056b9 100644 --- a/config.yaml +++ b/config.yaml @@ -114,6 +114,18 @@ dotfiles: f_enablewslhypervforwarding: dst: ~/.bin/enablewslhypervforwarding src: bin/enablewslhypervforwarding + f_pu: + dst: ~/.bin/pu + src: bin/pu + f_rpki: + dst: ~/.bin/rpki + src: bin/rpki + f_pu_helper: + dst: ~/.bin/pu.inetloc + src: bin/pu.inetloc + f_rpki_helper: + dst: ~/.bin/rpki.inetloc + src: bin/rpki.inetloc profiles: AINCRAD: dotfiles: @@ -267,3 +279,8 @@ profiles: - f_c3mpv - f_c3check - f_zprofile + - f_dotdrop.sh + - f_pu + - f_rpki + - f_pu_helper + - f_rpki_helper \ No newline at end of file diff --git a/dotfiles/bin/pu b/dotfiles/bin/pu new file mode 100755 index 0000000..f3b9227 --- /dev/null +++ b/dotfiles/bin/pu @@ -0,0 +1,7 @@ +#!/usr/bin/env zsh + +# +# {{@@ header() @@}} +# + +open {{@@ env['HOME'] @@}}/.bin/pu.inetloc \ No newline at end of file diff --git a/dotfiles/bin/pu.inetloc b/dotfiles/bin/pu.inetloc new file mode 100644 index 0000000..bf7e232 Binary files /dev/null and b/dotfiles/bin/pu.inetloc differ diff --git a/dotfiles/bin/rpki b/dotfiles/bin/rpki new file mode 100755 index 0000000..f1e07f3 --- /dev/null +++ b/dotfiles/bin/rpki @@ -0,0 +1,7 @@ +#!/usr/bin/env zsh + +# +# {{@@ header() @@}} +# + +open {{@@ env['HOME'] @@}}/.bin/rpki.inetloc \ No newline at end of file diff --git a/dotfiles/bin/rpki.inetloc b/dotfiles/bin/rpki.inetloc new file mode 100644 index 0000000..cf347c7 Binary files /dev/null and b/dotfiles/bin/rpki.inetloc differ diff --git a/dotfiles/z_profile b/dotfiles/z_profile index 6c09edd..c194900 100644 --- a/dotfiles/z_profile +++ b/dotfiles/z_profile @@ -1,8 +1,6 @@ {%@@ if profile == 'VWAGWOY00349' @@%} -#### FIG ENV VARIABLES #### -# Please make sure this block is at the start of this file. -[ -s ~/.fig/shell/pre.sh ] && source ~/.fig/shell/pre.sh -#### END FIG ENV VARIABLES #### +# Fig pre block. Keep at the top of this file. +[[ -f "$HOME/.fig/shell/zprofile.pre.zsh" ]] && . "$HOME/.fig/shell/zprofile.pre.zsh" {%@@ endif @@%} # @@ -18,6 +16,9 @@ export EDITOR {%@@ if profile == 'VWAGWOY00349' @@%} [[ $(command -v /opt/homebrew/bin/brew) ]] && eval "$(/opt/homebrew/bin/brew shellenv)" + +# Added by Toolbox App +export PATH="$PATH:/Users/vw6au89/Library/Application Support/JetBrains/Toolbox/scripts" {%@@ endif @@%} [[ $(command -v pyenv) ]] && export PYENV_ROOT="$HOME/.pyenv" @@ -42,8 +43,6 @@ wsl.exe -d wsl-vpnkit service wsl-vpnkit start {%@@ endif @@%} {%@@ if profile == 'VWAGWOY00349' @@%} -#### FIG ENV VARIABLES #### -# Please make sure this block is at the end of this file. -[ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh -#### END FIG ENV VARIABLES #### +# Fig post block. Keep at the bottom of this file. +[[ -f "$HOME/.fig/shell/zprofile.post.zsh" ]] && . "$HOME/.fig/shell/zprofile.post.zsh" {%@@ endif @@%} diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 3f222d7..c511441 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -1,8 +1,6 @@ {%@@ if profile == 'VWAGWOY00349' @@%} -#### FIG ENV VARIABLES #### -# Please make sure this block is at the start of this file. -[ -s ~/.fig/shell/pre.sh ] && source ~/.fig/shell/pre.sh -#### END FIG ENV VARIABLES #### +# Fig pre block. Keep at the top of this file. +[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && . "$HOME/.fig/shell/zshrc.pre.zsh" {%@@ endif @@%} # @@ -209,8 +207,6 @@ EOF } {%@@ if profile == 'VWAGWOY00349' @@%} -#### FIG ENV VARIABLES #### -# Please make sure this block is at the end of this file. -[ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh -#### END FIG ENV VARIABLES #### +# Fig post block. Keep at the bottom of this file. +[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && . "$HOME/.fig/shell/zshrc.post.zsh" {%@@ endif @@%}