├── .bash_profile ├── .bashrc ├── .config └── mpv │ ├── lua-settings │ └── osc.conf │ └── mpv.conf ├── .curlrc ├── .docker └── config.json ├── .gemrc ├── .gitattributes ├── .gitignore ├── .gnupg ├── gpg-agent.conf └── gpg.conf ├── .inputrc ├── .irbrc ├── .local └── share │ └── gnome-shell │ └── extensions │ ├── README.md │ └── steal-my-focus │ ├── README.md │ ├── extension.js │ └── metadata.json ├── .pg_service.conf ├── .pgpass ├── .psqlrc ├── .rtorrent.rc ├── .ssh └── config ├── .terraformrc ├── .tmux.conf ├── .vimrc ├── Brewfile ├── aircrack-ng.md ├── bin ├── caddy ├── git-atom ├── git-gc-recursive ├── git-open ├── git-status-rec ├── mysql_config_editor-set.sh ├── pinger.rb ├── shutdown-when-no-part.sh └── ssh ├── clean.sh ├── dns.md ├── docker-compose.yml ├── emoji.txt ├── etc ├── default │ └── grub ├── docker │ └── daemon.json ├── exports ├── fstab ├── grub.d │ └── 40_custom ├── network │ └── interfaces ├── nixos │ └── configuration.nix ├── sudoers.d │ ├── README.md │ ├── sudo │ └── truecrypt ├── systemd │ └── system.conf └── udev │ └── rules.d │ └── 60-oneplus.rules ├── fluxbox ├── keys └── menu ├── ip.txt ├── kubernetes ├── README.md ├── configmap.yml ├── job.yml ├── namespace.yml └── secret.yml ├── ports.md ├── programs.md ├── programs ├── adblock.txt ├── adobe-reader.md ├── atom.md ├── dnscrypt-proxy │ ├── README.md │ ├── dnscrypt-allowed-names.txt │ ├── dnscrypt-blocked-ips.txt │ ├── dnscrypt-forwarding-rules.txt │ ├── dnscrypt-proxy.toml │ └── setup-mac.sh ├── dnsmasq-adblock.conf ├── docker.md ├── download.sh ├── ffmpeg.sh ├── firefox.md ├── iTerm │ ├── Key Mappings.itermkeymap │ └── Profile.json ├── imagemagick.sh ├── nginx.conf ├── nodejs.sh ├── redis.sh ├── router.md ├── slack.sh ├── terraform.sh ├── vim.txt ├── vlc.sh ├── wine.sh └── youtube.md ├── rtmpdump.sh ├── setup-cygwin.sh ├── setup-debian.sh ├── setup-mac.sh ├── setup-pi.sh ├── setup-pixel.md ├── setup-ubuntu.sh ├── setup-windows.md ├── snippets-android.sh ├── snippets-bash.sh ├── snippets-dev.sh ├── snippets-git.sh ├── snippets-linux.sh ├── snippets-mac.sh ├── snippets-nixos.sh ├── snippets-ubuntu.sh ├── snippets-windows.bat ├── snippets.c ├── snippets.css ├── snippets.exs ├── snippets.go ├── snippets.html ├── snippets.js ├── snippets.md ├── snippets.php ├── snippets.py ├── snippets.rb ├── snippets.rs ├── snippets.sql ├── snippets.ts ├── sublime text ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Preferences.sublime-settings ├── README.md ├── SplitLines.sublime-macro └── TrimZ.sublime-macro ├── unicode.md ├── vscode ├── README.md ├── extensions.txt ├── keybindings.json └── settings.json ├── windows ├── Take Ownership - Install.bat ├── Take Ownership - Uninstall.bat ├── Vagrantfile ├── cmd_autorun.bat ├── cmd_low.bat ├── crush.bat ├── d.bat ├── flac2m4a.bat ├── flac2mp3.bat ├── flac2wav.bat ├── grep.bat ├── ls.bat ├── m4a2flac.bat ├── mov2mkv.bat ├── mp32m4a.bat ├── ogg2m4a.bat ├── pc.bat ├── pwd.bat ├── reflac.bat ├── subl.bat ├── wav2flac.bat ├── wav2m4a.bat └── wma2mp3.bat └── yubikey.md /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.config/mpv/lua-settings/osc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.config/mpv/lua-settings/osc.conf -------------------------------------------------------------------------------- /.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /.curlrc: -------------------------------------------------------------------------------- 1 | -w "\n" 2 | -------------------------------------------------------------------------------- /.docker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.docker/config.json -------------------------------------------------------------------------------- /.gemrc: -------------------------------------------------------------------------------- 1 | gem: --no-document 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /.gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.gnupg/gpg.conf -------------------------------------------------------------------------------- /.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.inputrc -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.irbrc -------------------------------------------------------------------------------- /.local/share/gnome-shell/extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.local/share/gnome-shell/extensions/README.md -------------------------------------------------------------------------------- /.local/share/gnome-shell/extensions/steal-my-focus/README.md: -------------------------------------------------------------------------------- 1 | From https://github.com/tak0kada/gnome-shell-extension-stealmyfocus 2 | -------------------------------------------------------------------------------- /.local/share/gnome-shell/extensions/steal-my-focus/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.local/share/gnome-shell/extensions/steal-my-focus/extension.js -------------------------------------------------------------------------------- /.local/share/gnome-shell/extensions/steal-my-focus/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.local/share/gnome-shell/extensions/steal-my-focus/metadata.json -------------------------------------------------------------------------------- /.pg_service.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.pg_service.conf -------------------------------------------------------------------------------- /.pgpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.pgpass -------------------------------------------------------------------------------- /.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.psqlrc -------------------------------------------------------------------------------- /.rtorrent.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.rtorrent.rc -------------------------------------------------------------------------------- /.ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.ssh/config -------------------------------------------------------------------------------- /.terraformrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.terraformrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- 1 | set-option -g mouse on 2 | -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /aircrack-ng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/aircrack-ng.md -------------------------------------------------------------------------------- /bin/caddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/caddy -------------------------------------------------------------------------------- /bin/git-atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/git-atom -------------------------------------------------------------------------------- /bin/git-gc-recursive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/git-gc-recursive -------------------------------------------------------------------------------- /bin/git-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/git-open -------------------------------------------------------------------------------- /bin/git-status-rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/git-status-rec -------------------------------------------------------------------------------- /bin/mysql_config_editor-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/mysql_config_editor-set.sh -------------------------------------------------------------------------------- /bin/pinger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/pinger.rb -------------------------------------------------------------------------------- /bin/shutdown-when-no-part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/shutdown-when-no-part.sh -------------------------------------------------------------------------------- /bin/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/bin/ssh -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/clean.sh -------------------------------------------------------------------------------- /dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/dns.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /emoji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/emoji.txt -------------------------------------------------------------------------------- /etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/default/grub -------------------------------------------------------------------------------- /etc/docker/daemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "experimental": true 3 | } 4 | -------------------------------------------------------------------------------- /etc/exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/exports -------------------------------------------------------------------------------- /etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/fstab -------------------------------------------------------------------------------- /etc/grub.d/40_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/grub.d/40_custom -------------------------------------------------------------------------------- /etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/network/interfaces -------------------------------------------------------------------------------- /etc/nixos/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/nixos/configuration.nix -------------------------------------------------------------------------------- /etc/sudoers.d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/sudoers.d/README.md -------------------------------------------------------------------------------- /etc/sudoers.d/sudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/sudoers.d/sudo -------------------------------------------------------------------------------- /etc/sudoers.d/truecrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/sudoers.d/truecrypt -------------------------------------------------------------------------------- /etc/systemd/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/systemd/system.conf -------------------------------------------------------------------------------- /etc/udev/rules.d/60-oneplus.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/etc/udev/rules.d/60-oneplus.rules -------------------------------------------------------------------------------- /fluxbox/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/fluxbox/keys -------------------------------------------------------------------------------- /fluxbox/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/fluxbox/menu -------------------------------------------------------------------------------- /ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/ip.txt -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/kubernetes/configmap.yml -------------------------------------------------------------------------------- /kubernetes/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/kubernetes/job.yml -------------------------------------------------------------------------------- /kubernetes/namespace.yml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: my-app 5 | -------------------------------------------------------------------------------- /kubernetes/secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/kubernetes/secret.yml -------------------------------------------------------------------------------- /ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/ports.md -------------------------------------------------------------------------------- /programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs.md -------------------------------------------------------------------------------- /programs/adblock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/adblock.txt -------------------------------------------------------------------------------- /programs/adobe-reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/adobe-reader.md -------------------------------------------------------------------------------- /programs/atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/atom.md -------------------------------------------------------------------------------- /programs/dnscrypt-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnscrypt-proxy/README.md -------------------------------------------------------------------------------- /programs/dnscrypt-proxy/dnscrypt-allowed-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnscrypt-proxy/dnscrypt-allowed-names.txt -------------------------------------------------------------------------------- /programs/dnscrypt-proxy/dnscrypt-blocked-ips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnscrypt-proxy/dnscrypt-blocked-ips.txt -------------------------------------------------------------------------------- /programs/dnscrypt-proxy/dnscrypt-forwarding-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnscrypt-proxy/dnscrypt-forwarding-rules.txt -------------------------------------------------------------------------------- /programs/dnscrypt-proxy/dnscrypt-proxy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnscrypt-proxy/dnscrypt-proxy.toml -------------------------------------------------------------------------------- /programs/dnscrypt-proxy/setup-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnscrypt-proxy/setup-mac.sh -------------------------------------------------------------------------------- /programs/dnsmasq-adblock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/dnsmasq-adblock.conf -------------------------------------------------------------------------------- /programs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/docker.md -------------------------------------------------------------------------------- /programs/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/download.sh -------------------------------------------------------------------------------- /programs/ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/ffmpeg.sh -------------------------------------------------------------------------------- /programs/firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/firefox.md -------------------------------------------------------------------------------- /programs/iTerm/Key Mappings.itermkeymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/iTerm/Key Mappings.itermkeymap -------------------------------------------------------------------------------- /programs/iTerm/Profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/iTerm/Profile.json -------------------------------------------------------------------------------- /programs/imagemagick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/imagemagick.sh -------------------------------------------------------------------------------- /programs/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/nginx.conf -------------------------------------------------------------------------------- /programs/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/nodejs.sh -------------------------------------------------------------------------------- /programs/redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/redis.sh -------------------------------------------------------------------------------- /programs/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/router.md -------------------------------------------------------------------------------- /programs/slack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/slack.sh -------------------------------------------------------------------------------- /programs/terraform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/terraform.sh -------------------------------------------------------------------------------- /programs/vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/vim.txt -------------------------------------------------------------------------------- /programs/vlc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/vlc.sh -------------------------------------------------------------------------------- /programs/wine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/wine.sh -------------------------------------------------------------------------------- /programs/youtube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/programs/youtube.md -------------------------------------------------------------------------------- /rtmpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/rtmpdump.sh -------------------------------------------------------------------------------- /setup-cygwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-cygwin.sh -------------------------------------------------------------------------------- /setup-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-debian.sh -------------------------------------------------------------------------------- /setup-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-mac.sh -------------------------------------------------------------------------------- /setup-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-pi.sh -------------------------------------------------------------------------------- /setup-pixel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-pixel.md -------------------------------------------------------------------------------- /setup-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-ubuntu.sh -------------------------------------------------------------------------------- /setup-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/setup-windows.md -------------------------------------------------------------------------------- /snippets-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-android.sh -------------------------------------------------------------------------------- /snippets-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-bash.sh -------------------------------------------------------------------------------- /snippets-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-dev.sh -------------------------------------------------------------------------------- /snippets-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-git.sh -------------------------------------------------------------------------------- /snippets-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-linux.sh -------------------------------------------------------------------------------- /snippets-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-mac.sh -------------------------------------------------------------------------------- /snippets-nixos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-nixos.sh -------------------------------------------------------------------------------- /snippets-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-ubuntu.sh -------------------------------------------------------------------------------- /snippets-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets-windows.bat -------------------------------------------------------------------------------- /snippets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.c -------------------------------------------------------------------------------- /snippets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.css -------------------------------------------------------------------------------- /snippets.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.exs -------------------------------------------------------------------------------- /snippets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.go -------------------------------------------------------------------------------- /snippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.html -------------------------------------------------------------------------------- /snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.js -------------------------------------------------------------------------------- /snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.md -------------------------------------------------------------------------------- /snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.php -------------------------------------------------------------------------------- /snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.py -------------------------------------------------------------------------------- /snippets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.rb -------------------------------------------------------------------------------- /snippets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.rs -------------------------------------------------------------------------------- /snippets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.sql -------------------------------------------------------------------------------- /snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/snippets.ts -------------------------------------------------------------------------------- /sublime text/Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/sublime text/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /sublime text/Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/sublime text/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /sublime text/Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/sublime text/Preferences.sublime-settings -------------------------------------------------------------------------------- /sublime text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/sublime text/README.md -------------------------------------------------------------------------------- /sublime text/SplitLines.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/sublime text/SplitLines.sublime-macro -------------------------------------------------------------------------------- /sublime text/TrimZ.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/sublime text/TrimZ.sublime-macro -------------------------------------------------------------------------------- /unicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/unicode.md -------------------------------------------------------------------------------- /vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/vscode/README.md -------------------------------------------------------------------------------- /vscode/extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/vscode/extensions.txt -------------------------------------------------------------------------------- /vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/vscode/keybindings.json -------------------------------------------------------------------------------- /vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/vscode/settings.json -------------------------------------------------------------------------------- /windows/Take Ownership - Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/Take Ownership - Install.bat -------------------------------------------------------------------------------- /windows/Take Ownership - Uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/Take Ownership - Uninstall.bat -------------------------------------------------------------------------------- /windows/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/Vagrantfile -------------------------------------------------------------------------------- /windows/cmd_autorun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/cmd_autorun.bat -------------------------------------------------------------------------------- /windows/cmd_low.bat: -------------------------------------------------------------------------------- 1 | wmic process where name="cmd.exe" CALL setpriority "below normal" 2 | -------------------------------------------------------------------------------- /windows/crush.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/crush.bat -------------------------------------------------------------------------------- /windows/d.bat: -------------------------------------------------------------------------------- 1 | cd %USERPROFILE%\Desktop 2 | -------------------------------------------------------------------------------- /windows/flac2m4a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/flac2m4a.bat -------------------------------------------------------------------------------- /windows/flac2mp3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/flac2mp3.bat -------------------------------------------------------------------------------- /windows/flac2wav.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/flac2wav.bat -------------------------------------------------------------------------------- /windows/grep.bat: -------------------------------------------------------------------------------- 1 | @findstr /S /I /C:%* 2 | -------------------------------------------------------------------------------- /windows/ls.bat: -------------------------------------------------------------------------------- 1 | @dir /B /P -------------------------------------------------------------------------------- /windows/m4a2flac.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/m4a2flac.bat -------------------------------------------------------------------------------- /windows/mov2mkv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/mov2mkv.bat -------------------------------------------------------------------------------- /windows/mp32m4a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/mp32m4a.bat -------------------------------------------------------------------------------- /windows/ogg2m4a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/ogg2m4a.bat -------------------------------------------------------------------------------- /windows/pc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/pc.bat -------------------------------------------------------------------------------- /windows/pwd.bat: -------------------------------------------------------------------------------- 1 | @echo %cd% 2 | -------------------------------------------------------------------------------- /windows/reflac.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/reflac.bat -------------------------------------------------------------------------------- /windows/subl.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | sublime_text %* 3 | -------------------------------------------------------------------------------- /windows/wav2flac.bat: -------------------------------------------------------------------------------- 1 | for %%f in (*.wav) do flac --best "%%f" 2 | -------------------------------------------------------------------------------- /windows/wav2m4a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/wav2m4a.bat -------------------------------------------------------------------------------- /windows/wma2mp3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/windows/wma2mp3.bat -------------------------------------------------------------------------------- /yubikey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefansundin/dotfiles/HEAD/yubikey.md --------------------------------------------------------------------------------