From a4dddf01c4229fe8d70aeed002899c4266b5db45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 12 Oct 2017 20:08:07 +0200 Subject: Add SSH config --- install | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'install') diff --git a/install b/install index efce93f..4f87bdf 100755 --- a/install +++ b/install @@ -47,6 +47,10 @@ if ask "Install user services"; then inst service/ ~/.service/ fi +if ask "Install SSH config"; then + inst private/ssh_config ~/.ssh/config +fi + YCM_PATH=~/.vim/bundle/YouCompleteMe if ask "Install VIM scripts"; then # See if we have anything different from what we have in repository -- cgit v1.2.3 From a24065603cf94af1910a98b97ac2bf188085e065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 13 Oct 2017 13:39:32 +0200 Subject: Drop archlinux (I am on gentoo now oh yeh) --- install | 5 ----- 1 file changed, 5 deletions(-) (limited to 'install') diff --git a/install b/install index 4f87bdf..6123f9a 100755 --- a/install +++ b/install @@ -13,11 +13,6 @@ git submodule update --init --recursive || (echo "Submodule update failed!"; exi ################################################################################# source private/install # private files, sorry but some privacy is required. -if [ -e /etc/arch-release ] && ask "Archlinux software"; then - source utils/arch - archlinux_inst -fi - if ask "Install Bashrc"; then inst bashrc ~/.bashrc inst shellrc ~/.shellrc -- cgit v1.2.3 From 7ca61f073f215214bcd997408a8a4b4b0c37705e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 18 Oct 2017 10:56:40 +0200 Subject: Add surf configuration --- install | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'install') diff --git a/install b/install index 6123f9a..751760c 100755 --- a/install +++ b/install @@ -105,6 +105,12 @@ if ask "Install Conkeror configuration"; then inst conkeror/ ~/.conkeror fi +if ask "Install Surf configuration"; then + inst surf/script.js ~/.surf/script.js + inst surf/theme/default.css ~/.surf/theme/default.css + inst local/bin/surf-menu ~/.local/bin/surf-menu +fi + if ask "Install MPD configuration"; then inst config/mpd/ ~/.config/mpd fi -- cgit v1.2.3 From a42357cc347f4c79c595c95202366cfb4aeea6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 18 Oct 2017 11:06:17 +0200 Subject: Fix surf config install --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install b/install index 751760c..ffbf348 100755 --- a/install +++ b/install @@ -107,7 +107,7 @@ fi if ask "Install Surf configuration"; then inst surf/script.js ~/.surf/script.js - inst surf/theme/default.css ~/.surf/theme/default.css + inst surf/styles/default.css ~/.surf/styles/default.css inst local/bin/surf-menu ~/.local/bin/surf-menu fi -- cgit v1.2.3