My programs. MIIINE!
This commit is contained in:
parent
7543597b6b
commit
c8e0d9bfe2
30
scripts/debloc-custom.sh
Executable file
30
scripts/debloc-custom.sh
Executable 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
1
scripts/index.sh
Normal file → Executable file
|
@ -1,3 +1,4 @@
|
||||||
source ~/.scripts/proxy.sh
|
source ~/.scripts/proxy.sh
|
||||||
source ~/.scripts/debloc.sh
|
source ~/.scripts/debloc.sh
|
||||||
|
source ~/.scripts/debloc-custom.sh
|
||||||
alias beep=~/.scripts/beep.sh
|
alias beep=~/.scripts/beep.sh
|
||||||
|
|
Loading…
Reference in a new issue