fixed sfx symlink attachment

This commit is contained in:
Wryn Wagner 2021-02-24 18:03:59 -07:00
parent 3797782841
commit 2d8e13598c

7
setup
View File

@ -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;