zfs list
This file contains 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
autoinstall: | |
version: 1 | |
identity: | |
realname: $realname | |
username: $username | |
password: $crypted_password | |
hostname: $hostname | |
active-directory: | |
admin-name: $admin_name | |
domain-name: $domain_name |
This file contains 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
unmapAll | |
map ? showHelp | |
map h scrollLeft | |
map j scrollDown | |
map k scrollUp | |
map l scrollRight | |
map gg scrollToTop | |
map G scrollToBottom | |
map d scrollPageDown | |
map u scrollPageUp |
This file contains 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/sh | |
set -e | |
# Download and setup my dotfiles, repo overriding possible just pass your repo as first argument | |
repo=${1:-https://github.com/dixiedream/dotfiles.git} | |
git clone --bare "$repo" "$HOME/.cfg" | |
function config { |