From 020a96cf66595d47eba58724d28aeb3e88c907cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 7 Apr 2017 14:43:23 +0200 Subject: Add gtk and qt theme configuration --- install | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'install') diff --git a/install b/install index a520b42..46a5d3c 100755 --- a/install +++ b/install @@ -91,6 +91,13 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/bin/sys-suspend ~/.local/bin/ fi +read -p "Install Gtk+ and Qt theme setup? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst gtk-2.0/gtkrc ~/.gtkrc-2.0 + inst gtk-3.0/ ~/.config/gtk-3.0/ + inst config/Trolltech.conf ~/.config/Trolltech.conf +fi + read -p "Install Conkeror configuration? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst conkerorrc ~/.conkerorrc -- cgit v1.2.3 From 8d39ed9e2804c6c9ed42aa685f6eb2f7c38fbbea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sat, 8 Apr 2017 21:53:52 +0200 Subject: Fix syncemail (option -s is gone) --- install | 1 + 1 file changed, 1 insertion(+) (limited to 'install') diff --git a/install b/install index 46a5d3c..5616075 100755 --- a/install +++ b/install @@ -59,6 +59,7 @@ fi read -p "Install email synchronization? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/bin/email-unread ~/.local/bin/email-unread + inst local/sbin/newmail-notify ~/.local/sbin/newmail-notify inst_email_sync # Contains: # inst local/sbin/syncemail ~/.local/sbin/ -- cgit v1.2.3 From 3b15d8dcd8912825281367ed959d7ad212e6a0ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sat, 8 Apr 2017 21:56:30 +0200 Subject: Add user services --- install | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'install') diff --git a/install b/install index 5616075..fd4a9f0 100755 --- a/install +++ b/install @@ -30,6 +30,12 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/git-prompt.sh ~/.local/ fi +read -p "Install user services? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst local/sbin/user-service.sh ~/.local/sbin/user-service.sh + inst service/ ~/.service/ +fi + read -p "Install VIM scripts? (Y/n) " YCM_PATH=~/.vim/bundle/YouCompleteMe if [[ $REPLY =~ ^[Yy]?$ ]]; then -- cgit v1.2.3 From 968eb80c3fa1d3581186e47ff8d3c7a32aa6b577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 10 Apr 2017 12:39:43 +0200 Subject: Add screenrc --- install | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'install') diff --git a/install b/install index fd4a9f0..15b8994 100755 --- a/install +++ b/install @@ -30,6 +30,11 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/git-prompt.sh ~/.local/ fi +read -p "Install configurations for various utility tools? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst screenrc ~/.screenrc +fi + read -p "Install user services? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/sbin/user-service.sh ~/.local/sbin/user-service.sh -- cgit v1.2.3 From 010a14c4d12af624c00d257d27d53a14abd2b7e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 28 Apr 2017 14:52:18 +0200 Subject: Add xshot and clip X utility scripts --- install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install') diff --git a/install b/install index 15b8994..66d4251 100755 --- a/install +++ b/install @@ -101,10 +101,10 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/bin/sys-reboot ~/.local/bin/ inst local/bin/sys-shutdown ~/.local/bin/ inst local/bin/sys-suspend ~/.local/bin/ -fi - -read -p "Install Gtk+ and Qt theme setup? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then + # Some small Xserver tools + inst local/bin/clip ~/.local/bin/ + inst local/bin/xshot ~/.local/bin/ + # Theme inst gtk-2.0/gtkrc ~/.gtkrc-2.0 inst gtk-3.0/ ~/.config/gtk-3.0/ inst config/Trolltech.conf ~/.config/Trolltech.conf -- cgit v1.2.3 From a2470a03197893500545e0b33892414ace204c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 3 May 2017 10:57:23 +0200 Subject: Add colors to printed messages --- install | 42 ++++++++++++++---------------------------- 1 file changed, 14 insertions(+), 28 deletions(-) (limited to 'install') diff --git a/install b/install index 66d4251..8b33e60 100755 --- a/install +++ b/install @@ -10,40 +10,34 @@ git submodule update --init || (echo "Submodule update failed!"; exit 5) ################################################################################# source private/install # private files, sorry but some privacy is required. -read -p "Install Bashrc? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install Bashrc?"; then inst bashrc ~/.bashrc inst shellrc ~/.shellrc inst profile ~/.profile fi -read -p "Install zshrc? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install zshrc?"; then inst zshrc ~/.zshrc inst shellrc ~/.shellrc inst zprofile ~/.zprofile fi -read -p "Install GIT configuration? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install GIT configuration?"; then inst gitconfig ~/.gitconfig inst local/git-prompt.sh ~/.local/ fi -read -p "Install configurations for various utility tools? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install configurations for various utility tools?"; then inst screenrc ~/.screenrc fi -read -p "Install user services? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install user services?"; then inst local/sbin/user-service.sh ~/.local/sbin/user-service.sh inst service/ ~/.service/ fi -read -p "Install VIM scripts? (Y/n) " YCM_PATH=~/.vim/bundle/YouCompleteMe -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install VIM scripts?"; then # See if we have anything different from what we have in repository YCM_REV="$(cd $YCM_PATH && git --work-tree=. diff --exit-code -s && echo y)" inst vimrc ~/.vimrc @@ -59,16 +53,14 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then fi fi -read -p "Install ranger configuration? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +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 -read -p "Install email synchronization? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install email synchronization?"; then inst local/bin/email-unread ~/.local/bin/email-unread inst local/sbin/newmail-notify ~/.local/sbin/newmail-notify inst_email_sync @@ -77,8 +69,7 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then # inst config/offlineimap/ ~/.config/offlineimap fi -read -p "Install mutt configuration? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install mutt configuration?"; then inst urlview ~/.urlview inst mutt/mailcap ~/.mutt/ inst mutt/gpg.rc ~/.mutt/ @@ -90,8 +81,7 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then mkdir -p ~/.cache/mutt # directory for temporaly html files fi -read -p "Install i3 configuration and related tools? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install i3 configuration and related tools?"; then inst xinitrc ~/.xinitrc inst Xresources ~/.Xresources inst config/i3/ ~/.config/i3 @@ -110,23 +100,19 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then inst config/Trolltech.conf ~/.config/Trolltech.conf fi -read -p "Install Conkeror configuration? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install Conkeror configuration?"; then inst conkerorrc ~/.conkerorrc inst conkeror/ ~/.conkeror fi -read -p "Install MPD configuration? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install MPD configuration?"; then inst config/mpd/ ~/.config/mpd fi -read -p "Install backup script? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install backup script?"; then inst local/bin/system-backup ~/.local/bin/system-backup fi -read -p "Install lxc-net script? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Install lxc-net script?"; then inst local/bin/lxc-net ~/.local/bin/lxc-net fi -- cgit v1.2.3 From 98305e117e89073e5debca2db60d4cb12b6ad7d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 3 May 2017 16:33:03 +0200 Subject: Install user-dirs.dirs --- install | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'install') diff --git a/install b/install index 8b33e60..873d3d0 100755 --- a/install +++ b/install @@ -81,7 +81,7 @@ if ask "Install mutt configuration?"; then mkdir -p ~/.cache/mutt # directory for temporaly html files fi -if ask "Install i3 configuration and related tools?"; then +if ask "Install desktop (i3..)?"; then inst xinitrc ~/.xinitrc inst Xresources ~/.Xresources inst config/i3/ ~/.config/i3 @@ -98,6 +98,8 @@ if ask "Install i3 configuration and related tools?"; then inst gtk-2.0/gtkrc ~/.gtkrc-2.0 inst gtk-3.0/ ~/.config/gtk-3.0/ inst config/Trolltech.conf ~/.config/Trolltech.conf + # User directories + inst config/user-dirs.dirs ~/.config/user-dirs.dirs fi if ask "Install Conkeror configuration?"; then -- cgit v1.2.3