diff options
author | William Carroll <wpcarro@gmail.com> | 2017-05-17T01·24-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2017-05-27T02·52-0400 |
commit | fd83169d4f1dbe8e5a5ebac29bc6ea2ade15d642 (patch) | |
tree | 2ad72fad7cdf358d89a44852394ccb205e306618 /configs | |
parent | f43ed77b120540e90f0a5bbf1244f96d4496e0bc (diff) |
Updates config script
Diffstat (limited to 'configs')
-rw-r--r-- | configs/.xinitrc | 1 | ||||
-rwxr-xr-x | configs/setup_configs.sh | 42 |
2 files changed, 22 insertions, 21 deletions
diff --git a/configs/.xinitrc b/configs/.xinitrc new file mode 100644 index 000000000000..599dfc3c7156 --- /dev/null +++ b/configs/.xinitrc @@ -0,0 +1 @@ +xset r rate 150 20 diff --git a/configs/setup_configs.sh b/configs/setup_configs.sh index 5e56e51402d0..734acedf428f 100755 --- a/configs/setup_configs.sh +++ b/configs/setup_configs.sh @@ -39,24 +39,24 @@ done # Fish Shell is a special case -cf_dir="${HOME}/.configs/fish" -cf="config.fish" - -if [ -f "${cf_dir}/${cf}" ] && [ ! -L "${cf_dir}/${cf}" ]; then - echo -n "Backing up ${cf} ... " && \ - mv "${cf_dir}/${cf}" "${HOME}/${cf}.bak" && \ - echo "Done." -fi - -if [ -L "${cf_dir}/${cf}" ]; then - if [ $(readlink "${cf_dir}/${cf}") = "${pc_settings_path}/configs/${cf}" ]; then - echo "Already properly symlinked to \"${pc_settings_path}/configs\"." - else - echo "Already symlinked but NOT to the proper location. Aborting..." - fi -else - echo -n "Symlinking to ${pc_settings_path}/configs/${cf} ... " && \ - ln -s "${pc_settings_path}/configs/${cf}" "${cf_dir}/${cf}" && \ - echo "Done." -fi -echo "" +# cf_dir="${HOME}/.configs/fish" +# cf="config.fish" + +# if [ -f "${cf_dir}/${cf}" ] && [ ! -L "${cf_dir}/${cf}" ]; then +# echo -n "Backing up ${cf} ... " && \ +# mv "${cf_dir}/${cf}" "${HOME}/${cf}.bak" && \ +# echo "Done." +# fi + +# if [ -L "${cf_dir}/${cf}" ]; then +# if [ $(readlink "${cf_dir}/${cf}") = "${pc_settings_path}/configs/${cf}" ]; then +# echo "Already properly symlinked to \"${pc_settings_path}/configs\"." +# else +# echo "Already symlinked but NOT to the proper location. Aborting..." +# fi +# else +# echo -n "Symlinking to ${pc_settings_path}/configs/${cf} ... " && \ +# ln -s "${pc_settings_path}/configs/${cf}" "${cf_dir}/${cf}" && \ +# echo "Done." +# fi +# echo "" |