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
|
#These are the programs I expect to find on any install
|
||||||
|
|
||||||
echo "installing base dependencies"
|
echo "installing base dependencies"
|
||||||
sudo apt-get -my install git \
|
sudo zypper install git \
|
||||||
stow \
|
stow \
|
||||||
etckeeper \
|
etckeeper \
|
||||||
tmux \
|
tmux \
|
||||||
|
@ -12,16 +12,15 @@ sudo apt-get -my install git \
|
||||||
htop \
|
htop \
|
||||||
mc \
|
mc \
|
||||||
curl \
|
curl \
|
||||||
aptitude \
|
|
||||||
|
|
||||||
read -n1 -p $'Does this system need ssh access?\n' REPLY
|
read -n1 -p $'Does this system need ssh access?\n' REPLY
|
||||||
if [[ $REPLY == [Yy] ]]; then
|
if [[ $REPLY == [Yy] ]]; then
|
||||||
sudo apt-get install openssh-server
|
sudo zypper install openssh-server
|
||||||
fi
|
fi
|
||||||
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
||||||
if [[ $REPLY == [Yy] ]]; then
|
if [[ $REPLY == [Yy] ]]; then
|
||||||
sudo apt-get install emacs synaptic
|
sudo zypper install emacs
|
||||||
else
|
else
|
||||||
sudo apt-get install emacs-nox
|
sudo zypper install emacs-nox
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ set -g history-limit 100000
|
||||||
set-option -g mouse on
|
set-option -g mouse on
|
||||||
set -g xterm-keys on
|
set -g xterm-keys on
|
||||||
set-window-option -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
|
#New Keybindings
|
||||||
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
|
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
|
||||||
|
@ -36,7 +36,7 @@ bind a send-prefix
|
||||||
|
|
||||||
#Powerline Settings
|
#Powerline Settings
|
||||||
run-shell "powerline-daemon -q"
|
run-shell "powerline-daemon -q"
|
||||||
source "/usr/share/powerline/bindings/tmux/powerline.conf"
|
source "/usr/share/tmux/powerline.conf"
|
||||||
|
|
||||||
#Misc Enables
|
#Misc Enables
|
||||||
set-option -g renumber-windows on
|
set-option -g renumber-windows on
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue