dotfiles/config/scripts/install-prefs

31 lines
739 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# Installs user preferences the way I like it
2019-10-24 19:35:00 +02:00
# NOTE In the process of migrating to a new install workflow.
# This holds stuff that have not been migrated yet.
# TODO A lot of stuff
2019-10-24 19:35:00 +02:00
cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1
. softwareList
2019-10-24 19:35:00 +02:00
echo "Doing stuff cuz"
2018-10-06 10:27:36 +02:00
changeColors monokai
2017-06-27 09:19:26 +02:00
vim +PlugUpgrade +PlugUpdate +PlugInstall +qall
2019-10-24 19:35:00 +02:00
### RECYCLE BIN
# Help yourself
2019-10-24 19:35:00 +02:00
# # translate-shell
# curl -L git.io/trans > ~/.local/bin/trans
# chmod +x ~/.local/bin/trans
2018-10-06 10:27:36 +02:00
2019-10-24 19:35:00 +02:00
# # sct
# TMP=$(mktemp /tmp/XXXXXXXXXX.c)
# wget https://gist.githubusercontent.com/ajnirp/208c03d3aa7f02c743d2/raw/55bf3eed25739173d8be57b5179ed5542cf40ed6/sct.c -O $TMP
# cc $TMP --std=c99 -lX11 -lXrandr -o $HOME/.local/bin/sct
# rm $TMP