This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # print usage | |
| DOMAIN=$1 | |
| EMAIL=$2 | |
| if [ -z "$1" ]; then | |
| echo "USAGE: $0 domain.lan your@email.address" | |
| echo "" | |
| echo "This will generate a non-secure self-signed wildcard certificate for given domain." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| WORKDIR=`mktemp -d` && cd $WORKDIR | |
| # Get deps | |
| sudo apt-get -q update | |
| sudo apt-get -qy install make libfuse-dev g++ | |
| # Get, make and install unrar | |
| wget http://www.rarlab.com/rar/unrarsrc-5.3.1.tar.gz | |
| tar zxvf unrarsrc-5.3.1.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "np900x4b clickpad" | |
| MatchIsTouchpad "on" | |
| Driver "synaptics" | |
| # Enable the clickpad and set click actions | |
| Option "ClickPad" "1" | |
| Option "ClickFinger1" "1" | |
| Option "ClickFinger2" "1" | |
| Option "ClickFinger3" "1" |