Move install-prefs to Ansible

I never ended up moving to this installation system, did I?
This commit is contained in:
Geoffrey Frogeye 2021-06-19 16:52:28 +02:00
parent fb5a885e3c
commit 16bb2362ad
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
9 changed files with 124 additions and 138 deletions

View file

@ -1,38 +0,0 @@
#!/usr/bin/env bash
# Installs user preferences the way I like it
# 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
mkdir -p $HOME/.cache
mkdir -p $HOME/.cache/zsh
mkdir -p $HOME/.cache/mpd
mkdir -p $HOME/.ssh
# mkdir -p $HOME/.local/bin
echo "Doing stuff cuz"
vim +PlugUpgrade +PlugUpdate +PlugInstall +qall
systemctl enable pulseaudio --user --now
systemctl enable mpd --user --now
echo '# Alt keys on keypad
# In /usr/share/X11/xkb/symbols/us_qwerty-fr add:
# include "keypad(oss)"
'
### RECYCLE BIN
# Help yourself
# # translate-shell
# curl -L git.io/trans > ~/.local/bin/trans
# chmod +x ~/.local/bin/trans
# # 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