1
0
Fork 0
dotfiles/scripts/post-install.sh

19 lines
436 B
Bash
Raw Normal View History

2018-03-10 18:07:17 +00:00
#!/bin/bash
2021-04-10 20:25:27 +00:00
# refresh font cache
fc-cache
2018-12-07 00:30:53 +00:00
# run units
systemctl --user daemon-reload
2019-04-04 23:37:38 +00:00
systemctl --user enable --now swayidle.service
systemctl --user enable --now wob.service
2019-09-29 00:06:57 +00:00
systemctl --user enable --now mako.service
2018-03-10 18:07:17 +00:00
2018-12-07 00:25:18 +00:00
# install tmux plugins
2018-12-07 00:29:05 +00:00
tmux run-shell ~/.tmux/plugins/tpm/bin/install_plugins
tmux run-shell ~/.tmux/plugins/tpm/bin/clean_plugins
2018-12-07 00:25:18 +00:00
2018-12-07 00:30:53 +00:00
# install vim plugins
vim -E +"call dein#update()" +"qall!" /dev/null &>/dev/null
2018-11-08 04:52:35 +00:00