From c8e0d9bfe29c728718de5e2c3770b8bbeece508b Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Sun, 20 Nov 2016 14:33:54 +0100 Subject: [PATCH] My programs. MIIINE! --- scripts/debloc-custom.sh | 30 ++++++++++++++++++++++++++++++ scripts/index.sh | 1 + 2 files changed, 31 insertions(+) create mode 100755 scripts/debloc-custom.sh mode change 100644 => 100755 scripts/index.sh diff --git a/scripts/debloc-custom.sh b/scripts/debloc-custom.sh new file mode 100755 index 0000000..58073a6 --- /dev/null +++ b/scripts/debloc-custom.sh @@ -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 +} + diff --git a/scripts/index.sh b/scripts/index.sh old mode 100644 new mode 100755 index 87b928b..d06c95a --- a/scripts/index.sh +++ b/scripts/index.sh @@ -1,3 +1,4 @@ source ~/.scripts/proxy.sh source ~/.scripts/debloc.sh +source ~/.scripts/debloc-custom.sh alias beep=~/.scripts/beep.sh