From d629402949674c9b3d51d90e5a5b76f9c53d1ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 12 May 2017 13:49:49 +0200 Subject: Dump ranger configuration I am not using ranger anyway. --- install | 7 ------- 1 file changed, 7 deletions(-) (limited to 'install') diff --git a/install b/install index 93347c0..97e99a5 100755 --- a/install +++ b/install @@ -56,13 +56,6 @@ if ask "Install VIM scripts"; then fi fi -if ask "Install ranger configuration"; then - mkdir -p ~/.config/ranger - inst config/ranger/rc.conf ~/.config/ranger/rc.conf - inst config/ranger/rifle.conf ~/.config/ranger/rifle.conf - inst config/ranger/scope.sh ~/.config/ranger/scope.sh -fi - if ask "Install email synchronization"; then inst local/bin/email-unread ~/.local/bin/email-unread inst local/sbin/newmail-notify ~/.local/sbin/newmail-notify -- cgit v1.2.3 From 68dadd91357839749beccf19cba3e7b80c4ebfb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 12 May 2017 13:50:53 +0200 Subject: Drop sys-* files as they expect consolekit I am no longer using consolekit. --- install | 3 --- 1 file changed, 3 deletions(-) (limited to 'install') diff --git a/install b/install index 97e99a5..ce38eca 100755 --- a/install +++ b/install @@ -84,9 +84,6 @@ if ask "Install desktop (i3..)"; then inst config/i3blocks/ ~/.config/i3blocks inst config/dunst/ ~/.config/dunst inst local/bin/mxrandr ~/.local/bin/ - inst local/bin/sys-reboot ~/.local/bin/ - inst local/bin/sys-shutdown ~/.local/bin/ - inst local/bin/sys-suspend ~/.local/bin/ # Some small Xserver tools inst local/bin/clip ~/.local/bin/ inst local/bin/xshot ~/.local/bin/ -- cgit v1.2.3 From 3abbe8eed87f7091a59feedfb846b8b39aa3f3e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 15 May 2017 19:29:58 +0200 Subject: In install script update submodules recursively --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install b/install index ce38eca..3e2988e 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ cd `dirname $0` -git submodule update --init || (echo "Submodule update failed!"; exit 5) +git submodule update --init --recursive || (echo "Submodule update failed!"; exit 5) # Source inst and diff function . ./utils/inst -- cgit v1.2.3 From f545b3cd194f95e3c1fd1585a38380470525557e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 19 May 2017 22:43:55 +0200 Subject: Return of the archlinux software --- install | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'install') diff --git a/install b/install index 3e2988e..67d8d9e 100755 --- a/install +++ b/install @@ -13,6 +13,11 @@ 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 private/arch + archlinux_inst +fi + if ask "Install Bashrc"; then inst bashrc ~/.bashrc inst shellrc ~/.shellrc -- cgit v1.2.3