diff --git a/setup b/setup index 399de3f..c2ea591 100755 --- a/setup +++ b/setup @@ -167,6 +167,11 @@ function CONFIG__PYLINT() { echo "linked pylint configuration" } +function CONFIG__SFX_APPLICATION() { + CONFIG__BASIC_SYMLINK "$HOME/.config/wryn/sfx" "$DOTWRYN_PATH/bin/desktop/sfx/play.sh"; + echo "linked xinitrc" +} + function CONFIG__TMUX() { CONFIG__BASIC_SYMLINK "$HOME/.tmux.conf" "$DOTWRYN_PATH/config/tmux/tmux.conf"; echo "linked tmux configuration" @@ -177,6 +182,7 @@ function CONFIG__XINITRC() { echo "linked xinitrc" } + function CONFIG__TERMINFO() { echo "adding terminfo files" for file in $(find "$DOTWRYN_PATH/config/terminfo" -type f); do @@ -197,6 +203,7 @@ function CONFIG__SETUP() { CONFIG__GIT; CONFIG__PYLINT; + CONFIG__SFX_APPLICATION; CONFIG__TMUX; CONFIG__XINITRC;