My programs. MIIINE!

crash2
Geoffrey Frogeye 2016-11-20 14:33:54 +01:00
parent 7543597b6b
commit c8e0d9bfe2
2 changed files with 31 additions and 0 deletions

30
scripts/debloc-custom.sh Executable file
View File

@ -0,0 +1,30 @@
#!/usr/bin/env bash
# Installs all programs on the system
function debloc-custom-cli {
# Utils
debloc-install moreutils screen ncdu htop sl proxytunnel pass
# Text editor
debloc-install vim exuberant-ctags
# Dev
debloc-install build-essential cmake clang
}
function debloc-custom {
debloc-custom-cli
# Desktop manager
debloc-install i3 dmenu dunst unclutter xautolock feh numlockx scrot
# qutebrowser
debloc-install python3-lxml python-tox python3-pyqt5 python3-pyqt5.qtwebkit python3-sip python3-jinja2 python3-pygments python3-yaml
TMP_DIR=$(mktemp -d)
$(cd $TMP_DIR; wget --quiet https://qutebrowser.org/python3-pypeg2_2.15.2-1_all.deb)
$(cd $TMP_DIR; wget --quiet https://github.com/The-Compiler/qutebrowser/releases/download/v0.8.4/qutebrowser_0.8.4-1_all.deb)
debloc-deb $TMP_DIR/*.deb
rm -rf $TMP_DIR
}

1
scripts/index.sh Normal file → Executable file
View File

@ -1,3 +1,4 @@
source ~/.scripts/proxy.sh
source ~/.scripts/debloc.sh
source ~/.scripts/debloc-custom.sh
alias beep=~/.scripts/beep.sh