I hereby claim:
- I am ni-c on github.
- I am ni_c (https://keybase.io/ni_c) on keybase.
- I have a public key ASC7owXUvSOS0XDOzmZ7-rFiMdYiMCEe4H3TgrwCHxq_vQo
To claim this, I am signing this object:
| #!/bin/bash | |
| set -Eeuo pipefail | |
| # IFS=$'\n\t' | |
| # Auto-elevate | |
| if [[ $EUID -ne 0 ]]; then exec sudo -E -- "$0" "$@"; fi | |
| # Logging | |
| log(){ printf "\033[1;32m[+] %s\033[0m\n" "$*"; } | |
| warn(){ printf "\033[1;33m[!] %s\033[0m\n" "$*"; } |
| #!/bin/bash | |
| # Neovim Installation Script for Ubuntu Server | |
| # Installs all prerequisites, builds Neovim from source and adds it to PATH | |
| set -e # Exit script on errors | |
| # Colors for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| sudo apt-get install git zsh | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k | |
| sed -i -- 's/ZSH_THEME="robbyrussell"/plugins=(virtualenv)\nPOWERLEVEL9K_CUSTOM_LIVE="echo -n \\"\\uf525 LIVE \\uf525\\""\nPOWERLEVEL9K_CUSTOM_LIVE_BACKGROUND="red"\nPOWERLEVEL9K_CUSTOM_LIVE_FOREGROUND="white"\nPOWERLEVEL9K_MODE="nerdfont-complete"\nPOWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(custom_live host dir vcs virtualenv)\nPOWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs load ram disk_usage time)\nZSH_THEME="powerlevel9k\/powerlevel9k"\nDEFAULT_USER=roamsys\n/g' ~/.zshrc |
I hereby claim:
To claim this, I am signing this object:
| # Set global gitignore to ~/.gitignore | |
| git config --global core.excludesfile '~/.gitignore' | |
| # Git ignore mode chamges | |
| git config --global core.filemode false | |
| # Enable colors | |
| git config --global color.ui true | |
| # Set your user name and email address with the following commands: |
| sudo modprobe bcm2708_wdog | |
| sudo vi /etc/modules # add line "bcm2708_wdog" | |
| sudo apt-get install watchdog chkconfig | |
| sudo chkconfig watchdog on | |
| sudo service watchdog start | |
| sudo vi /etc/watchdog.conf # enable line "watchdog-device = /dev/watchdog" |