Skip to content

Commit

Permalink
Runs dev-* scripts first as these tend to be req'd by the app-* scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Brandt authored and Tobias Brandt committed Jun 10, 2024
1 parent 223bd37 commit 17e2f76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions install-headless.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ sudo apt install -y curl git jq unzip

# Run installers
for script in ~/.local/share/omakub/install/cfg-*.sh; do source $script; done
for script in ~/.local/share/omakub/install/app*-*.sh; do source $script; done
for script in ~/.local/share/omakub/install/dev-*.sh; do source $script; done
for script in ~/.local/share/omakub/install/set-cfg-*.sh; do source $script; done
for script in ~/.local/share/omakub/install/app*-*.sh; do source $script; done
#for script in ~/.local/share/omakub/install/gui-*.sh; do source $script; done
for script in ~/.local/share/omakub/install/set-cfg-*.sh; do source $script; done
#for script in ~/.local/share/omakub/install/set-gui-*.sh; do source $script; done

# Revert to normal idle settings
Expand Down
1 change: 0 additions & 1 deletion install/cfg-shell.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[ -f "~/.bashrc" ] && mv ~/.bashrc ~/.bashrc.bak
cp ~/.local/share/omakub/configs/bashrc ~/.bashrc
source ~/.local/share/omakub/defaults/bash/shell

[ -f "~/.inputrc" ] && mv ~/.inputrc ~/.inputrc.bak
cp ~/.local/share/omakub/configs/inputrc ~/.inputrc
1 change: 1 addition & 0 deletions install/set-cfg-shell.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source ~/.local/share/omakub/defaults/bash/shell

0 comments on commit 17e2f76

Please sign in to comment.