├── .gitignore ├── Brewfile ├── Brewfile.lock.json ├── LICENSE ├── README.md ├── TODO ├── bin ├── ld-default ├── ld-patch ├── lock ├── screenshot ├── select-layout ├── set-bluetooth-audio-profile ├── shutdown-now ├── toggle-colorscheme └── vpn ├── config.nix ├── dotfiles ├── Xresources ├── alacritty │ └── alacritty.yml ├── autorandr │ ├── andrea-projector │ │ ├── config │ │ └── setup │ ├── hex │ │ ├── config │ │ └── setup │ ├── octal │ │ ├── config │ │ └── setup │ ├── parents │ │ ├── config │ │ └── setup │ ├── postswitch │ └── singlestore-nc │ │ ├── config │ │ └── setup ├── coc-settings.json ├── dunst │ ├── dunstrc │ └── test-dunst ├── gitconfig ├── gitignore ├── herbstluftwm │ ├── autostart │ ├── layout │ │ ├── 50-50 │ │ ├── 60-40 │ │ ├── videocall │ │ └── workhorse │ └── panel.sh ├── ideavimrc ├── init.vim ├── npmrc ├── polybar │ ├── config │ └── script │ │ ├── playerctl.py │ │ └── workspaces.sh ├── ripgreprc ├── rofi │ └── config ├── taskrc ├── vimrc_basic ├── xsessionrc ├── zathura │ └── zathurarc ├── zsh │ ├── antigen.zsh │ ├── antigenrc.zsh │ ├── antigenrc.zsh.zwc │ ├── custom │ │ ├── aliases.zsh │ │ ├── autojump.zsh │ │ ├── dircolors.zsh │ │ ├── direnv.zsh │ │ ├── editor.zsh │ │ ├── fzf.zsh │ │ ├── nix.zsh │ │ ├── node.zsh │ │ └── path.zsh │ └── theme │ │ ├── init.zsh-theme │ │ └── init.zsh-theme.antigen-compat └── zshrc ├── install ├── lib.sh ├── overlays └── 999_env.nix └── wallpapers ├── 1920x1080 └── proto-points.png └── 3440x1440 └── proto-points.png /.gitignore: -------------------------------------------------------------------------------- 1 | .ctags 2 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | * setup autostart for nm-applet, keybase, and redshift 2 | -------------------------------------------------------------------------------- /bin/ld-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/ld-default -------------------------------------------------------------------------------- /bin/ld-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/ld-patch -------------------------------------------------------------------------------- /bin/lock: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exec i3lock -e -c 002b36 3 | -------------------------------------------------------------------------------- /bin/screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/screenshot -------------------------------------------------------------------------------- /bin/select-layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/select-layout -------------------------------------------------------------------------------- /bin/set-bluetooth-audio-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/set-bluetooth-audio-profile -------------------------------------------------------------------------------- /bin/shutdown-now: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/shutdown-now -------------------------------------------------------------------------------- /bin/toggle-colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/toggle-colorscheme -------------------------------------------------------------------------------- /bin/vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/bin/vpn -------------------------------------------------------------------------------- /config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/config.nix -------------------------------------------------------------------------------- /dotfiles/Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/Xresources -------------------------------------------------------------------------------- /dotfiles/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/alacritty/alacritty.yml -------------------------------------------------------------------------------- /dotfiles/autorandr/andrea-projector/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/andrea-projector/config -------------------------------------------------------------------------------- /dotfiles/autorandr/andrea-projector/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/andrea-projector/setup -------------------------------------------------------------------------------- /dotfiles/autorandr/hex/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/hex/config -------------------------------------------------------------------------------- /dotfiles/autorandr/hex/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/hex/setup -------------------------------------------------------------------------------- /dotfiles/autorandr/octal/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/octal/config -------------------------------------------------------------------------------- /dotfiles/autorandr/octal/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/octal/setup -------------------------------------------------------------------------------- /dotfiles/autorandr/parents/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/parents/config -------------------------------------------------------------------------------- /dotfiles/autorandr/parents/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/parents/setup -------------------------------------------------------------------------------- /dotfiles/autorandr/postswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/postswitch -------------------------------------------------------------------------------- /dotfiles/autorandr/singlestore-nc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/singlestore-nc/config -------------------------------------------------------------------------------- /dotfiles/autorandr/singlestore-nc/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/autorandr/singlestore-nc/setup -------------------------------------------------------------------------------- /dotfiles/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/coc-settings.json -------------------------------------------------------------------------------- /dotfiles/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/dunst/dunstrc -------------------------------------------------------------------------------- /dotfiles/dunst/test-dunst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/dunst/test-dunst -------------------------------------------------------------------------------- /dotfiles/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/gitconfig -------------------------------------------------------------------------------- /dotfiles/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/gitignore -------------------------------------------------------------------------------- /dotfiles/herbstluftwm/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/herbstluftwm/autostart -------------------------------------------------------------------------------- /dotfiles/herbstluftwm/layout/50-50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/herbstluftwm/layout/50-50 -------------------------------------------------------------------------------- /dotfiles/herbstluftwm/layout/60-40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/herbstluftwm/layout/60-40 -------------------------------------------------------------------------------- /dotfiles/herbstluftwm/layout/videocall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/herbstluftwm/layout/videocall -------------------------------------------------------------------------------- /dotfiles/herbstluftwm/layout/workhorse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/herbstluftwm/layout/workhorse -------------------------------------------------------------------------------- /dotfiles/herbstluftwm/panel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/herbstluftwm/panel.sh -------------------------------------------------------------------------------- /dotfiles/ideavimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/ideavimrc -------------------------------------------------------------------------------- /dotfiles/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/init.vim -------------------------------------------------------------------------------- /dotfiles/npmrc: -------------------------------------------------------------------------------- 1 | init-author-name=Carl Sverre 2 | -------------------------------------------------------------------------------- /dotfiles/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/polybar/config -------------------------------------------------------------------------------- /dotfiles/polybar/script/playerctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/polybar/script/playerctl.py -------------------------------------------------------------------------------- /dotfiles/polybar/script/workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/polybar/script/workspaces.sh -------------------------------------------------------------------------------- /dotfiles/ripgreprc: -------------------------------------------------------------------------------- 1 | --smart-case 2 | -------------------------------------------------------------------------------- /dotfiles/rofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/rofi/config -------------------------------------------------------------------------------- /dotfiles/taskrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/taskrc -------------------------------------------------------------------------------- /dotfiles/vimrc_basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/vimrc_basic -------------------------------------------------------------------------------- /dotfiles/xsessionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/xsessionrc -------------------------------------------------------------------------------- /dotfiles/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zathura/zathurarc -------------------------------------------------------------------------------- /dotfiles/zsh/antigen.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/antigen.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/antigenrc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/antigenrc.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/antigenrc.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/antigenrc.zsh.zwc -------------------------------------------------------------------------------- /dotfiles/zsh/custom/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/aliases.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/autojump.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/autojump.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/dircolors.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/dircolors.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/direnv.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/direnv.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/editor.zsh: -------------------------------------------------------------------------------- 1 | export EDITOR=vim 2 | -------------------------------------------------------------------------------- /dotfiles/zsh/custom/fzf.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/fzf.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/nix.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/nix.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/node.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/node.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/custom/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/custom/path.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/theme/init.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/theme/init.zsh-theme -------------------------------------------------------------------------------- /dotfiles/zsh/theme/init.zsh-theme.antigen-compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zsh/theme/init.zsh-theme.antigen-compat -------------------------------------------------------------------------------- /dotfiles/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/dotfiles/zshrc -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/install -------------------------------------------------------------------------------- /lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/lib.sh -------------------------------------------------------------------------------- /overlays/999_env.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/overlays/999_env.nix -------------------------------------------------------------------------------- /wallpapers/1920x1080/proto-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/wallpapers/1920x1080/proto-points.png -------------------------------------------------------------------------------- /wallpapers/3440x1440/proto-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlsverre/config/HEAD/wallpapers/3440x1440/proto-points.png --------------------------------------------------------------------------------