diff --git a/deps.sh b/deps.sh index 7f584ee..c582ccb 100755 --- a/deps.sh +++ b/deps.sh @@ -2,7 +2,7 @@ #These are the programs I expect to find on any install echo "installing base dependencies" -sudo apt-get -my install git \ +sudo zypper install git \ stow \ etckeeper \ tmux \ @@ -12,16 +12,15 @@ sudo apt-get -my install git \ htop \ mc \ curl \ - aptitude \ read -n1 -p $'Does this system need ssh access?\n' REPLY if [[ $REPLY == [Yy] ]]; then - sudo apt-get install openssh-server + sudo zypper install openssh-server fi read -n1 -p $'\nDoes this system have a GUI?\n' REPLY if [[ $REPLY == [Yy] ]]; then - sudo apt-get install emacs synaptic + sudo zypper install emacs else - sudo apt-get install emacs-nox + sudo zypper install emacs-nox fi diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 8d12aa3..d75c361 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -14,7 +14,7 @@ set -g history-limit 100000 set-option -g mouse on set -g xterm-keys on set-window-option -g xterm-keys on -set-option -g pane-active-border-fg yellow +#set-option -g pane-active-border-fg yellow #New Keybindings bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded" @@ -36,7 +36,7 @@ bind a send-prefix #Powerline Settings run-shell "powerline-daemon -q" -source "/usr/share/powerline/bindings/tmux/powerline.conf" +source "/usr/share/tmux/powerline.conf" #Misc Enables set-option -g renumber-windows on