diff --git a/ansible.desktop/tasks/base_packages.yml b/ansible.desktop/tasks/base_packages.yml index a6e492f..d59f0cd 100644 --- a/ansible.desktop/tasks/base_packages.yml +++ b/ansible.desktop/tasks/base_packages.yml @@ -16,6 +16,14 @@ - i3 - polybar +- name: Development Environment + become: true + apt: + name: + - build-essential + - ninja-build + - luarocks + - name: Capture Tools become: true apt: diff --git a/profile b/profile index 0ced080..7d66b9d 100755 --- a/profile +++ b/profile @@ -10,22 +10,22 @@ # if running bash if [ -n "$BASH_VERSION" ]; then - # include .bashrc if it exists - if [ -f "$HOME/.bashrc" ]; then - . "$HOME/.bashrc" - fi + # include .bashrc if it exists + if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" + fi fi # set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" +if [ -d "$HOME/bin" ]; then + PATH="$HOME/bin:$PATH" fi # set PATH so it includes user's private bin if it exists -if [ -d "$HOME/.local/bin" ] ; then - PATH="$HOME/.local/bin:$PATH" +if [ -d "$HOME/.local/bin" ]; then + PATH="$HOME/.local/bin:$PATH" fi -if [ -n "$PS1" ] && [ -z "$TMUX" ] && [ -z "$SSH_TTY" ] && [ -t 1 ]; then - tmux attach-session -t main || tmux new-session -s main -fi +#if [ -n "$PS1" ] && [ -z "$TMUX" ] && [ -z "$SSH_TTY" ] && [ -t 1 ]; then +# tmux attach-session -t main || tmux new-session -s main +#fi