diff options
author | johannst <johannes.stoelp@gmail.com> | 2019-08-24 14:17:37 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2019-08-24 14:17:37 +0200 |
commit | c0eb40dc25e646ab0dd20c557976e8c576c54f9e (patch) | |
tree | 1b8d1ac165899ea19f06d378fa847d655deeb043 | |
parent | 52019030f2c31f78686e308a30dcaec7e5d4178d (diff) | |
download | dotfiles-c0eb40dc25e646ab0dd20c557976e8c576c54f9e.tar.gz dotfiles-c0eb40dc25e646ab0dd20c557976e8c576c54f9e.zip |
generate install config && deleted install.config
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | install | 21 | ||||
-rw-r--r-- | install.config | 19 |
3 files changed, 22 insertions, 19 deletions
@@ -1,2 +1,3 @@ .cgdb/readline_history.txt *.swp +install.config @@ -254,6 +254,10 @@ function zshrcInstaller() { #{{{ Installer Main Loop function main() { + [[ -f $gInstallConfigFile ]] || { + generateInstallConfigFile $gInstallConfigFile + } + # parse gInstallConfigFile to see what should be installed local configToInstall=() while read line; do @@ -286,6 +290,23 @@ function main() { #}}} #{{{ Installer Core +generateInstallConfigFile () { + local config_fname=$1 + : > $config_fname + + echo "No config found, about to generate new config >> $config_fname <<" + for conf in ${gToolsConfig[@]}; do + local conf=$(echo $conf | cut -d':' -f1) + echo "Install $conf? [yY/nN]" + read install + [[ $install =~ ^[^yY]?$ ]] && { + echo "n - $conf" >> $config_fname + } || { + echo "y - $conf" >> $config_fname + } + done +} + installConfig() { local config=$1 local binary=$(getDepenentBinaryName $config) diff --git a/install.config b/install.config deleted file mode 100644 index 67b7bdb..0000000 --- a/install.config +++ /dev/null @@ -1,19 +0,0 @@ -# dotfiles -- install.config -# author: johannst -# line format: [yYnN] - <config_tag> -# lines not starting with [yYnN] are ignored - -n - bashrc -n - gdb -n - cgdb -n - conkyrc -n - gitconfig -n - tmux.conf -n - vimrc -n - emacs -n - Xresources -n - i3config -n - i3status -n - i3blocks -n - termite -n - zshrc |