├── .gitignore ├── .gitmodules ├── Dockerfile ├── Dockerfile.alpine ├── alacritty.yml ├── awesome ├── autolock.sh └── rc.lua ├── backup.sh ├── bash_profile ├── bashrc ├── config.fish ├── config.sh ├── crontab ├── desktop.sh ├── dnsmasq.conf ├── dnsmasq.libvirt-daemon ├── docker.sh ├── dockerfunc ├── fix-mouse.sh ├── gitconfig ├── gitignore_global ├── go-tools.sh ├── hosts.work ├── iterm ├── hybrid.itermcolors ├── pencil-light.itermcolors ├── seti.itermcolors └── tomorrow-night.itermcolors ├── known_hosts ├── libvirt.debian.xml ├── libvirt.ubuntu.xml ├── libvirt.vm-net.xml ├── linux ├── 99-synaptics.conf ├── Xresources-hybrid ├── dnsmasq-vm.conf ├── gnome-terminal-tomorrow-theme.sh ├── gtk-3.0-settings.ini ├── gtk.css ├── gtkrc-2.0 ├── i3config ├── i3status.conf ├── inputrc ├── interface-vm0 ├── keyboard ├── keyboard-backlight ├── keyboard-i3-switch ├── lock.sh ├── monitor-single.sh ├── monitor.sh ├── polkit-50-org.freedesktop.NetworkManager.rules ├── screen-backlight ├── sleep.sh ├── steambox ├── sudoers ├── swayconfig ├── swaystatus ├── touchpad.sh ├── vm-powerd.sh └── xkb-symbols-us ├── osx.sh ├── package.toml ├── pm-sleep.sh ├── pulseaudio └── default.pa ├── registry-cache.yml ├── scripts ├── backup.sh ├── spotify.sh ├── zfs-backup.sh ├── zfs-mirror.sh └── zfs-prune.sh ├── setup-desktop.sh ├── setup.sh ├── setup_links.sh ├── ssh_config ├── sync_backups.sh ├── tmux.conf ├── tomorrow.minttyrc ├── vimrc ├── vm.interfaces ├── vm_scripts ├── keyboard ├── profiled_pulse_server.sh ├── rc.local ├── readme.md ├── resize_disk ├── set_hostname ├── setup.sh ├── vm_seal ├── vm_setup ├── vm_setup.service └── wm-resize ├── xfce4-terminal.dark.terminalrc ├── xfce4-terminal.terminalrc └── xorg.touchpad.conf /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | vim/bundle 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/Dockerfile.alpine -------------------------------------------------------------------------------- /alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/alacritty.yml -------------------------------------------------------------------------------- /awesome/autolock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/awesome/autolock.sh -------------------------------------------------------------------------------- /awesome/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/awesome/rc.lua -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/backup.sh -------------------------------------------------------------------------------- /bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/bash_profile -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/bashrc -------------------------------------------------------------------------------- /config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/config.fish -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/config.sh -------------------------------------------------------------------------------- /crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/crontab -------------------------------------------------------------------------------- /desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/desktop.sh -------------------------------------------------------------------------------- /dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/dnsmasq.conf -------------------------------------------------------------------------------- /dnsmasq.libvirt-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/dnsmasq.libvirt-daemon -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/docker.sh -------------------------------------------------------------------------------- /dockerfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/dockerfunc -------------------------------------------------------------------------------- /fix-mouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/fix-mouse.sh -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/gitignore_global -------------------------------------------------------------------------------- /go-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/go-tools.sh -------------------------------------------------------------------------------- /hosts.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/hosts.work -------------------------------------------------------------------------------- /iterm/hybrid.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/iterm/hybrid.itermcolors -------------------------------------------------------------------------------- /iterm/pencil-light.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/iterm/pencil-light.itermcolors -------------------------------------------------------------------------------- /iterm/seti.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/iterm/seti.itermcolors -------------------------------------------------------------------------------- /iterm/tomorrow-night.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/iterm/tomorrow-night.itermcolors -------------------------------------------------------------------------------- /known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/known_hosts -------------------------------------------------------------------------------- /libvirt.debian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/libvirt.debian.xml -------------------------------------------------------------------------------- /libvirt.ubuntu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/libvirt.ubuntu.xml -------------------------------------------------------------------------------- /libvirt.vm-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/libvirt.vm-net.xml -------------------------------------------------------------------------------- /linux/99-synaptics.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/99-synaptics.conf -------------------------------------------------------------------------------- /linux/Xresources-hybrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/Xresources-hybrid -------------------------------------------------------------------------------- /linux/dnsmasq-vm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/dnsmasq-vm.conf -------------------------------------------------------------------------------- /linux/gnome-terminal-tomorrow-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/gnome-terminal-tomorrow-theme.sh -------------------------------------------------------------------------------- /linux/gtk-3.0-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/gtk-3.0-settings.ini -------------------------------------------------------------------------------- /linux/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/gtk.css -------------------------------------------------------------------------------- /linux/gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/gtkrc-2.0 -------------------------------------------------------------------------------- /linux/i3config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/i3config -------------------------------------------------------------------------------- /linux/i3status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/i3status.conf -------------------------------------------------------------------------------- /linux/inputrc: -------------------------------------------------------------------------------- 1 | set bell-style none 2 | -------------------------------------------------------------------------------- /linux/interface-vm0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/interface-vm0 -------------------------------------------------------------------------------- /linux/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/keyboard -------------------------------------------------------------------------------- /linux/keyboard-backlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/keyboard-backlight -------------------------------------------------------------------------------- /linux/keyboard-i3-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/keyboard-i3-switch -------------------------------------------------------------------------------- /linux/lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/lock.sh -------------------------------------------------------------------------------- /linux/monitor-single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/monitor-single.sh -------------------------------------------------------------------------------- /linux/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/monitor.sh -------------------------------------------------------------------------------- /linux/polkit-50-org.freedesktop.NetworkManager.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/polkit-50-org.freedesktop.NetworkManager.rules -------------------------------------------------------------------------------- /linux/screen-backlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/screen-backlight -------------------------------------------------------------------------------- /linux/sleep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/sleep.sh -------------------------------------------------------------------------------- /linux/steambox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/steambox -------------------------------------------------------------------------------- /linux/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/sudoers -------------------------------------------------------------------------------- /linux/swayconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/swayconfig -------------------------------------------------------------------------------- /linux/swaystatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/swaystatus -------------------------------------------------------------------------------- /linux/touchpad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/touchpad.sh -------------------------------------------------------------------------------- /linux/vm-powerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/vm-powerd.sh -------------------------------------------------------------------------------- /linux/xkb-symbols-us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/linux/xkb-symbols-us -------------------------------------------------------------------------------- /osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/osx.sh -------------------------------------------------------------------------------- /package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/package.toml -------------------------------------------------------------------------------- /pm-sleep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/pm-sleep.sh -------------------------------------------------------------------------------- /pulseaudio/default.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/pulseaudio/default.pa -------------------------------------------------------------------------------- /registry-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/registry-cache.yml -------------------------------------------------------------------------------- /scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/scripts/backup.sh -------------------------------------------------------------------------------- /scripts/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/scripts/spotify.sh -------------------------------------------------------------------------------- /scripts/zfs-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/scripts/zfs-backup.sh -------------------------------------------------------------------------------- /scripts/zfs-mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/scripts/zfs-mirror.sh -------------------------------------------------------------------------------- /scripts/zfs-prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/scripts/zfs-prune.sh -------------------------------------------------------------------------------- /setup-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/setup-desktop.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/setup.sh -------------------------------------------------------------------------------- /setup_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/setup_links.sh -------------------------------------------------------------------------------- /ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/ssh_config -------------------------------------------------------------------------------- /sync_backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/sync_backups.sh -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/tmux.conf -------------------------------------------------------------------------------- /tomorrow.minttyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/tomorrow.minttyrc -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vimrc -------------------------------------------------------------------------------- /vm.interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm.interfaces -------------------------------------------------------------------------------- /vm_scripts/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/keyboard -------------------------------------------------------------------------------- /vm_scripts/profiled_pulse_server.sh: -------------------------------------------------------------------------------- 1 | export PULSE_SERVER=10.255.0.1 2 | -------------------------------------------------------------------------------- /vm_scripts/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/rc.local -------------------------------------------------------------------------------- /vm_scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/readme.md -------------------------------------------------------------------------------- /vm_scripts/resize_disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/resize_disk -------------------------------------------------------------------------------- /vm_scripts/set_hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/set_hostname -------------------------------------------------------------------------------- /vm_scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/setup.sh -------------------------------------------------------------------------------- /vm_scripts/vm_seal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/vm_seal -------------------------------------------------------------------------------- /vm_scripts/vm_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/vm_setup -------------------------------------------------------------------------------- /vm_scripts/vm_setup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/vm_setup.service -------------------------------------------------------------------------------- /vm_scripts/wm-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/vm_scripts/wm-resize -------------------------------------------------------------------------------- /xfce4-terminal.dark.terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/xfce4-terminal.dark.terminalrc -------------------------------------------------------------------------------- /xfce4-terminal.terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/xfce4-terminal.terminalrc -------------------------------------------------------------------------------- /xorg.touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/.dotfiles/HEAD/xorg.touchpad.conf --------------------------------------------------------------------------------