changes specific to openSuse
This commit is contained in:
parent
39520f1c4e
commit
8c26c0d002
2 changed files with 6 additions and 7 deletions
9
deps.sh
9
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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue