This is my personal setup almost every time I install Arch Linux. This is meant for me as being something I can quickly reference.
In my case I have a Danish keyboard layout.
| #!/bin/bash | |
| # A simple script to "watch" a command in pure Bash. | |
| help() { | |
| echo "live is a simple bash script, that keeps looping a specified command, just like the well known watch command. But made in Bash." | |
| echo | |
| echo " Usage:" | |
| echo " live [arguments...] command" | |
| echo | |
| echo " Arguments:" |
| #!/bin/bash | |
| ## Start repository on own Git Server and start hacking. | |
| ## Yes, it could be way better - detection of already made repository, etc. | |
| ## Usage: git-create.sh <reponame> "<description>" | |
| ## Never use slashes! | |
| # Connection | |
| HOST='git' | |
| USER='git' |
| #!/bin/bash | |
| # Dependencies: pulseaudio | |
| # Optional: pavucontrol | |
| # Automaticly switch currently running sink-inputs to your default sink. | |
| # $ pactl set-default-sink | |
| # Pavucontrol can be used to do this with a GUI. | |
| # Special thanks goes to Steve Parker for helping me with refining the script. |