├── .Xresources ├── .bash_aliases ├── .config ├── alacritty │ ├── alacritty-dark.toml │ └── alacritty-light.toml ├── autostart │ └── slock.desktop ├── bat │ └── config ├── darkman │ └── config.yaml ├── dunst │ └── dunstrc ├── gh │ └── config.yml ├── htop │ └── htoprc ├── joshuto │ ├── joshuto.toml │ └── preview_file.sh ├── mc │ ├── ini │ └── panels.ini ├── ranger │ └── scope.sh ├── sublime-text-3 │ └── Packages │ │ └── User │ │ └── Preferences.sublime-settings ├── user-dirs.dirs ├── xdg-desktop-portal │ └── portals.conf └── zed │ ├── extensions │ └── index.json │ └── settings.json ├── .data ├── dark-mode.d │ ├── alacritty-theme.sh │ └── gtk-theme.sh └── light-mode.d │ ├── alacritty-theme.sh │ └── gtk-theme.sh ├── .dmrc ├── .ghci ├── .gitignore ├── .gitmodules ├── .keynavrc ├── .local └── bin │ ├── cfg │ ├── dunst │ ├── edit_cfg │ ├── freshen │ ├── gab │ ├── git-collaborator │ ├── git-status-all │ ├── gnome-control-center │ ├── inotify-info │ ├── keynav │ ├── maybe_slock.sh │ ├── roam-backup │ ├── spotify │ ├── usb-reset.sh │ ├── xmonad │ ├── xr │ └── zed-dev │ ├── .envrc │ ├── add-unstaged-to-branch.py │ ├── add-unstaged-to-misc │ ├── add-unstaged-to-todos │ ├── dfmerge │ ├── dfrefresh │ ├── nightly │ ├── preview │ ├── sc │ ├── sr │ ├── stable │ └── zed-copy ├── .profile ├── .selected_editor ├── .tmux.conf ├── .xmonad └── build ├── env ├── .ghcid ├── .gitignore ├── LICENSE ├── apt-packages.md ├── apt-sources.sh ├── cargo-packages.md ├── encrypted-home-dir-2.md ├── encrypted-home-dir.md ├── errlog-filter │ ├── .gitignore │ ├── LICENSE │ ├── errlog-filter.hs │ └── package.yaml ├── grub │ ├── grub │ └── readme.md ├── home-dir-git.md ├── kinesis │ ├── adv360.keymap │ ├── generate.hs │ ├── kint2pp.hex │ ├── kint2pp.json │ ├── kint2pp_load.sh │ ├── layout1.txt │ ├── m_qwerty.txt │ └── readme.md ├── package.yaml ├── scripts │ ├── brightness-decrease.sh │ ├── brightness-increase.sh │ ├── brightness-set.sh │ ├── byzanz-record-region.sh │ ├── notify-hourly.sh │ ├── rebuild.sh │ ├── screenshot-ocr.sh │ └── usb-reset-run-as-root.sh ├── setup-log-0.md ├── setup-log-1.md ├── setup-log-2.md ├── setup-log-3.md ├── setup-scripts │ ├── 010-git-install.sh │ ├── 011-git-configure.sh │ ├── 020-homedir-init.sh │ ├── 021-homedir-check.sh │ ├── 022-homedir-revive.sh │ ├── 030-freshen.sh │ ├── 040-check-grub-update.sh │ ├── 040-create-dirs.sh │ ├── 040-create-xmonad-xsession.sh │ ├── 040-disable-unnecessary-services.sh │ ├── 040-udev-rules.sh │ ├── 041-apply-grub-update.sh │ ├── 041-build-xmonad.sh │ ├── 041-create-move-downloads.sh │ ├── 041-create-notify-hourly.sh │ ├── 050-clone-repos.sh │ ├── 050-darkman.sh │ ├── 050-install-chrome.sh │ ├── 050-installs.sh │ ├── darkman-install.sh │ └── readme.md ├── src │ ├── Audio.hs │ ├── Background.hs │ ├── Bluetooth.hs │ ├── Byzanz.hs │ ├── Constants.hs │ ├── Escape.hs │ ├── Focus.hs │ ├── Gist.hs │ ├── Imports.hs │ ├── Logs.hs │ ├── Misc.hs │ ├── Monad.hs │ ├── Notes.hs │ ├── Power.hs │ ├── Process.hs │ ├── Prompt.hs │ ├── RedShift.hs │ ├── Roam.hs │ ├── ScreenLock.hs │ ├── Screens.hs │ ├── Spotify.hs │ ├── Spotify │ │ └── Types.hs │ ├── TallWheel.hs │ ├── Tmux.hs │ ├── Todoist.hs │ ├── Touchpad.hs │ ├── WeeklyReview.hs │ └── xmonad.hs ├── stack.yaml ├── stack.yaml.lock ├── stylus │ └── stylus-2018-12-24.json ├── systemd │ ├── home-mgsloan.mount │ ├── nvidia-original │ ├── nvidia-persistenced.service │ ├── powertop.service │ ├── readme.md │ └── slock@.service ├── templates │ └── move-downloads.template ├── udev-rules │ ├── .gitignore │ ├── 90-backlight.rules │ ├── 99-batify.rules.mustache │ ├── apply.sh │ ├── generate.sh │ └── readme.md ├── xmonad.png └── xsessions │ └── xmonad.desktop.template └── readme.md /.Xresources: -------------------------------------------------------------------------------- 1 | Xft.dpi: 196 2 | -------------------------------------------------------------------------------- /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.config/alacritty/alacritty-dark.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/alacritty/alacritty-dark.toml -------------------------------------------------------------------------------- /.config/alacritty/alacritty-light.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/alacritty/alacritty-light.toml -------------------------------------------------------------------------------- /.config/autostart/slock.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/autostart/slock.desktop -------------------------------------------------------------------------------- /.config/bat/config: -------------------------------------------------------------------------------- 1 | --theme=ansi 2 | -------------------------------------------------------------------------------- /.config/darkman/config.yaml: -------------------------------------------------------------------------------- 1 | lat: 40 2 | lng: -105 3 | dbusserver: true 4 | portal: false 5 | -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/dunst/dunstrc -------------------------------------------------------------------------------- /.config/gh/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/gh/config.yml -------------------------------------------------------------------------------- /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/joshuto/joshuto.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/joshuto/joshuto.toml -------------------------------------------------------------------------------- /.config/joshuto/preview_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/joshuto/preview_file.sh -------------------------------------------------------------------------------- /.config/mc/ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/mc/ini -------------------------------------------------------------------------------- /.config/mc/panels.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/ranger/scope.sh -------------------------------------------------------------------------------- /.config/sublime-text-3/Packages/User/Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/sublime-text-3/Packages/User/Preferences.sublime-settings -------------------------------------------------------------------------------- /.config/user-dirs.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/user-dirs.dirs -------------------------------------------------------------------------------- /.config/xdg-desktop-portal/portals.conf: -------------------------------------------------------------------------------- 1 | [preferred] 2 | org.freedesktop.impl.portal.Settings=darkman 3 | -------------------------------------------------------------------------------- /.config/zed/extensions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/zed/extensions/index.json -------------------------------------------------------------------------------- /.config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.config/zed/settings.json -------------------------------------------------------------------------------- /.data/dark-mode.d/alacritty-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.data/dark-mode.d/alacritty-theme.sh -------------------------------------------------------------------------------- /.data/dark-mode.d/gtk-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.data/dark-mode.d/gtk-theme.sh -------------------------------------------------------------------------------- /.data/light-mode.d/alacritty-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.data/light-mode.d/alacritty-theme.sh -------------------------------------------------------------------------------- /.data/light-mode.d/gtk-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.data/light-mode.d/gtk-theme.sh -------------------------------------------------------------------------------- /.dmrc: -------------------------------------------------------------------------------- 1 | [Desktop] 2 | Session=xmonad 3 | -------------------------------------------------------------------------------- /.ghci: -------------------------------------------------------------------------------- 1 | :set prompt "λ " 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /.keynavrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.keynavrc -------------------------------------------------------------------------------- /.local/bin/cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/cfg -------------------------------------------------------------------------------- /.local/bin/dunst: -------------------------------------------------------------------------------- 1 | ../../oss/dunst/dunst -------------------------------------------------------------------------------- /.local/bin/edit_cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/edit_cfg -------------------------------------------------------------------------------- /.local/bin/freshen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/freshen -------------------------------------------------------------------------------- /.local/bin/gab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/gab -------------------------------------------------------------------------------- /.local/bin/git-collaborator: -------------------------------------------------------------------------------- 1 | /home/mgsloan/proj/git-collaborator/git-collaborator.py -------------------------------------------------------------------------------- /.local/bin/git-status-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/git-status-all -------------------------------------------------------------------------------- /.local/bin/gnome-control-center: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/gnome-control-center -------------------------------------------------------------------------------- /.local/bin/inotify-info: -------------------------------------------------------------------------------- 1 | ../../oss/inotify-info/_release/inotify-info -------------------------------------------------------------------------------- /.local/bin/keynav: -------------------------------------------------------------------------------- 1 | ../../oss/keynav/keynav -------------------------------------------------------------------------------- /.local/bin/maybe_slock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/maybe_slock.sh -------------------------------------------------------------------------------- /.local/bin/roam-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/roam-backup -------------------------------------------------------------------------------- /.local/bin/spotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/spotify -------------------------------------------------------------------------------- /.local/bin/usb-reset.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo ~/env/scripts/usb-reset-run-as-root.sh 3 | -------------------------------------------------------------------------------- /.local/bin/xmonad: -------------------------------------------------------------------------------- 1 | ../../.xmonad/xmonad-x86_64-linux -------------------------------------------------------------------------------- /.local/bin/xr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/xr -------------------------------------------------------------------------------- /.local/bin/zed-dev/.envrc: -------------------------------------------------------------------------------- 1 | PATH_add ~/.local/bin/zed-dev/ 2 | -------------------------------------------------------------------------------- /.local/bin/zed-dev/add-unstaged-to-branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/add-unstaged-to-branch.py -------------------------------------------------------------------------------- /.local/bin/zed-dev/add-unstaged-to-misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/add-unstaged-to-misc -------------------------------------------------------------------------------- /.local/bin/zed-dev/add-unstaged-to-todos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/add-unstaged-to-todos -------------------------------------------------------------------------------- /.local/bin/zed-dev/dfmerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/dfmerge -------------------------------------------------------------------------------- /.local/bin/zed-dev/dfrefresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/dfrefresh -------------------------------------------------------------------------------- /.local/bin/zed-dev/nightly: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl -f https://zed.dev/install.sh | ZED_CHANNEL=nightly sh 4 | -------------------------------------------------------------------------------- /.local/bin/zed-dev/preview: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl -f https://zed.dev/install.sh | ZED_CHANNEL=preview sh 4 | -------------------------------------------------------------------------------- /.local/bin/zed-dev/sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/sc -------------------------------------------------------------------------------- /.local/bin/zed-dev/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/sr -------------------------------------------------------------------------------- /.local/bin/zed-dev/stable: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl -f https://zed.dev/install.sh | ZED_CHANNEL=stable sh 4 | -------------------------------------------------------------------------------- /.local/bin/zed-dev/zed-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.local/bin/zed-dev/zed-copy -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.profile -------------------------------------------------------------------------------- /.selected_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.selected_editor -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.xmonad/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/.xmonad/build -------------------------------------------------------------------------------- /env/.ghcid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/.ghcid -------------------------------------------------------------------------------- /env/.gitignore: -------------------------------------------------------------------------------- 1 | *.hi 2 | *.o 3 | .stack-work/ 4 | /notes 5 | /untracked 6 | /xmonad-config.cabal 7 | -------------------------------------------------------------------------------- /env/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/LICENSE -------------------------------------------------------------------------------- /env/apt-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/apt-packages.md -------------------------------------------------------------------------------- /env/apt-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/apt-sources.sh -------------------------------------------------------------------------------- /env/cargo-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/cargo-packages.md -------------------------------------------------------------------------------- /env/encrypted-home-dir-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/encrypted-home-dir-2.md -------------------------------------------------------------------------------- /env/encrypted-home-dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/encrypted-home-dir.md -------------------------------------------------------------------------------- /env/errlog-filter/.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | errlog-filter.cabal 3 | *~ -------------------------------------------------------------------------------- /env/errlog-filter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/errlog-filter/LICENSE -------------------------------------------------------------------------------- /env/errlog-filter/errlog-filter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/errlog-filter/errlog-filter.hs -------------------------------------------------------------------------------- /env/errlog-filter/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/errlog-filter/package.yaml -------------------------------------------------------------------------------- /env/grub/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/grub/grub -------------------------------------------------------------------------------- /env/grub/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/grub/readme.md -------------------------------------------------------------------------------- /env/home-dir-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/home-dir-git.md -------------------------------------------------------------------------------- /env/kinesis/adv360.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/adv360.keymap -------------------------------------------------------------------------------- /env/kinesis/generate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/generate.hs -------------------------------------------------------------------------------- /env/kinesis/kint2pp.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/kint2pp.hex -------------------------------------------------------------------------------- /env/kinesis/kint2pp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/kint2pp.json -------------------------------------------------------------------------------- /env/kinesis/kint2pp_load.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | teensy_loader_cli --mcu=TEENSY2PP -w kint2pp.hex 3 | -------------------------------------------------------------------------------- /env/kinesis/layout1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/layout1.txt -------------------------------------------------------------------------------- /env/kinesis/m_qwerty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/m_qwerty.txt -------------------------------------------------------------------------------- /env/kinesis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/kinesis/readme.md -------------------------------------------------------------------------------- /env/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/package.yaml -------------------------------------------------------------------------------- /env/scripts/brightness-decrease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/brightness-decrease.sh -------------------------------------------------------------------------------- /env/scripts/brightness-increase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/brightness-increase.sh -------------------------------------------------------------------------------- /env/scripts/brightness-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/brightness-set.sh -------------------------------------------------------------------------------- /env/scripts/byzanz-record-region.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/byzanz-record-region.sh -------------------------------------------------------------------------------- /env/scripts/notify-hourly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/notify-hourly.sh -------------------------------------------------------------------------------- /env/scripts/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/rebuild.sh -------------------------------------------------------------------------------- /env/scripts/screenshot-ocr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/screenshot-ocr.sh -------------------------------------------------------------------------------- /env/scripts/usb-reset-run-as-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/scripts/usb-reset-run-as-root.sh -------------------------------------------------------------------------------- /env/setup-log-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-log-0.md -------------------------------------------------------------------------------- /env/setup-log-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-log-1.md -------------------------------------------------------------------------------- /env/setup-log-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-log-2.md -------------------------------------------------------------------------------- /env/setup-log-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-log-3.md -------------------------------------------------------------------------------- /env/setup-scripts/010-git-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/010-git-install.sh -------------------------------------------------------------------------------- /env/setup-scripts/011-git-configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/011-git-configure.sh -------------------------------------------------------------------------------- /env/setup-scripts/020-homedir-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/020-homedir-init.sh -------------------------------------------------------------------------------- /env/setup-scripts/021-homedir-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/021-homedir-check.sh -------------------------------------------------------------------------------- /env/setup-scripts/022-homedir-revive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/022-homedir-revive.sh -------------------------------------------------------------------------------- /env/setup-scripts/030-freshen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/030-freshen.sh -------------------------------------------------------------------------------- /env/setup-scripts/040-check-grub-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/040-check-grub-update.sh -------------------------------------------------------------------------------- /env/setup-scripts/040-create-dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/040-create-dirs.sh -------------------------------------------------------------------------------- /env/setup-scripts/040-create-xmonad-xsession.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/040-create-xmonad-xsession.sh -------------------------------------------------------------------------------- /env/setup-scripts/040-disable-unnecessary-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/040-disable-unnecessary-services.sh -------------------------------------------------------------------------------- /env/setup-scripts/040-udev-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/040-udev-rules.sh -------------------------------------------------------------------------------- /env/setup-scripts/041-apply-grub-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/041-apply-grub-update.sh -------------------------------------------------------------------------------- /env/setup-scripts/041-build-xmonad.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ~/env/script/rebuild.sh 4 | -------------------------------------------------------------------------------- /env/setup-scripts/041-create-move-downloads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/041-create-move-downloads.sh -------------------------------------------------------------------------------- /env/setup-scripts/041-create-notify-hourly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/041-create-notify-hourly.sh -------------------------------------------------------------------------------- /env/setup-scripts/050-clone-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/050-clone-repos.sh -------------------------------------------------------------------------------- /env/setup-scripts/050-darkman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/050-darkman.sh -------------------------------------------------------------------------------- /env/setup-scripts/050-install-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/050-install-chrome.sh -------------------------------------------------------------------------------- /env/setup-scripts/050-installs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/050-installs.sh -------------------------------------------------------------------------------- /env/setup-scripts/darkman-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/darkman-install.sh -------------------------------------------------------------------------------- /env/setup-scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/setup-scripts/readme.md -------------------------------------------------------------------------------- /env/src/Audio.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Audio.hs -------------------------------------------------------------------------------- /env/src/Background.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Background.hs -------------------------------------------------------------------------------- /env/src/Bluetooth.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Bluetooth.hs -------------------------------------------------------------------------------- /env/src/Byzanz.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Byzanz.hs -------------------------------------------------------------------------------- /env/src/Constants.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Constants.hs -------------------------------------------------------------------------------- /env/src/Escape.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Escape.hs -------------------------------------------------------------------------------- /env/src/Focus.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Focus.hs -------------------------------------------------------------------------------- /env/src/Gist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Gist.hs -------------------------------------------------------------------------------- /env/src/Imports.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Imports.hs -------------------------------------------------------------------------------- /env/src/Logs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Logs.hs -------------------------------------------------------------------------------- /env/src/Misc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Misc.hs -------------------------------------------------------------------------------- /env/src/Monad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Monad.hs -------------------------------------------------------------------------------- /env/src/Notes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Notes.hs -------------------------------------------------------------------------------- /env/src/Power.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Power.hs -------------------------------------------------------------------------------- /env/src/Process.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Process.hs -------------------------------------------------------------------------------- /env/src/Prompt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Prompt.hs -------------------------------------------------------------------------------- /env/src/RedShift.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/RedShift.hs -------------------------------------------------------------------------------- /env/src/Roam.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Roam.hs -------------------------------------------------------------------------------- /env/src/ScreenLock.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/ScreenLock.hs -------------------------------------------------------------------------------- /env/src/Screens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Screens.hs -------------------------------------------------------------------------------- /env/src/Spotify.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Spotify.hs -------------------------------------------------------------------------------- /env/src/Spotify/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Spotify/Types.hs -------------------------------------------------------------------------------- /env/src/TallWheel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/TallWheel.hs -------------------------------------------------------------------------------- /env/src/Tmux.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Tmux.hs -------------------------------------------------------------------------------- /env/src/Todoist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Todoist.hs -------------------------------------------------------------------------------- /env/src/Touchpad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/Touchpad.hs -------------------------------------------------------------------------------- /env/src/WeeklyReview.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/WeeklyReview.hs -------------------------------------------------------------------------------- /env/src/xmonad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/src/xmonad.hs -------------------------------------------------------------------------------- /env/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/stack.yaml -------------------------------------------------------------------------------- /env/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/stack.yaml.lock -------------------------------------------------------------------------------- /env/stylus/stylus-2018-12-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/stylus/stylus-2018-12-24.json -------------------------------------------------------------------------------- /env/systemd/home-mgsloan.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/systemd/home-mgsloan.mount -------------------------------------------------------------------------------- /env/systemd/nvidia-original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/systemd/nvidia-original -------------------------------------------------------------------------------- /env/systemd/nvidia-persistenced.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/systemd/nvidia-persistenced.service -------------------------------------------------------------------------------- /env/systemd/powertop.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/systemd/powertop.service -------------------------------------------------------------------------------- /env/systemd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/systemd/readme.md -------------------------------------------------------------------------------- /env/systemd/slock@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/systemd/slock@.service -------------------------------------------------------------------------------- /env/templates/move-downloads.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/templates/move-downloads.template -------------------------------------------------------------------------------- /env/udev-rules/.gitignore: -------------------------------------------------------------------------------- 1 | 99-batify.rules 2 | env-vars.yaml 3 | -------------------------------------------------------------------------------- /env/udev-rules/90-backlight.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/udev-rules/90-backlight.rules -------------------------------------------------------------------------------- /env/udev-rules/99-batify.rules.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/udev-rules/99-batify.rules.mustache -------------------------------------------------------------------------------- /env/udev-rules/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/udev-rules/apply.sh -------------------------------------------------------------------------------- /env/udev-rules/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/udev-rules/generate.sh -------------------------------------------------------------------------------- /env/udev-rules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/udev-rules/readme.md -------------------------------------------------------------------------------- /env/xmonad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/xmonad.png -------------------------------------------------------------------------------- /env/xsessions/xmonad.desktop.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/env/xsessions/xmonad.desktop.template -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgsloan/mgsloan-dotfiles/HEAD/readme.md --------------------------------------------------------------------------------