aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-09 20:48:10 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-09 20:48:10 -0500
commit40f02bc8088ca93224bf65f083c4ab3b17eaf435 (patch)
treef5c4d0bd619a4f7547f318a86ecfdd05e88ca814 /.config
parentd97f4feb2c17835d31a4dff5f1109d50c4111943 (diff)
move gentoo into subdirectory
Diffstat (limited to '.config')
-rw-r--r--.config/discord/settings.org16
-rw-r--r--.config/emacs/feed.org22
-rw-r--r--.config/emacs/force-custom-file.org8
-rw-r--r--.config/emacs/init.org25
-rw-r--r--.config/emacs/languages.org128
-rw-r--r--.config/emacs/package-setup.org25
-rw-r--r--.config/emacs/tools.org362
-rw-r--r--.config/emacs/user-interface.org114
-rw-r--r--.config/fastfetch/config.org92
-rw-r--r--.config/foot/foot.org66
-rw-r--r--.config/fuzzel/fuzzel.org35
-rw-r--r--.config/mpd/mpd.org68
-rw-r--r--.config/ncmpcpp/bindings.org28
-rw-r--r--.config/ncmpcpp/config.org16
-rw-r--r--.config/nvim/init.org22
-rw-r--r--.config/nvim/lua/appearance.org15
-rw-r--r--.config/nvim/lua/behaviour.org19
-rw-r--r--.config/nvim/lua/plugins.org27
-rw-r--r--.config/sway/config.org274
-rw-r--r--.config/sway/poweraction.org9
-rw-r--r--.config/sway/powerprompt.org19
-rw-r--r--.config/waybar/config.org110
-rw-r--r--.config/waybar/style.org124
23 files changed, 0 insertions, 1624 deletions
diff --git a/.config/discord/settings.org b/.config/discord/settings.org
deleted file mode 100644
index 725b773..0000000
--- a/.config/discord/settings.org
+++ /dev/null
@@ -1,16 +0,0 @@
-#+title: Discord settings.json
-There really isn't much to this. I do set =SKIP_HOST_UPDATE= to =true= though to prevent it from trying to auto-update before it appears in my operating system repositories.
-#+begin_src js :tangle ~/.config/discord/settings.json :mkdirp yes
- {
- "IS_MAXIMIZED": false,
- "IS_MINIMIZED": false,
- "SKIP_HOST_UPDATE": true,
- "chromiumSwitches": {},
- "WINDOW_BOUNDS": {
- "x": 0,
- "y": 0,
- "width": 1060,
- "height": 1870
- }
- }
-#+end_src
diff --git a/.config/emacs/feed.org b/.config/emacs/feed.org
deleted file mode 100644
index 9cf8cb6..0000000
--- a/.config/emacs/feed.org
+++ /dev/null
@@ -1,22 +0,0 @@
-#+title: Emacs RSS Feed
-
-#+begin_src org :tangle ~/.config/emacs/feed.org :mkdirp yes
- ,* Blogs
- :PROPERTIES:
- :ID: elfeed
- :END:
- ,** Software :software:
- ,*** [[https://pluralistic.net/feed/][Cory Doctorow's Blog]] :politics:fiction:
- ,*** [[https://maia.crimew.gay/feed.xml][Maia Crimew's Blog]] :internet:politics:
- ,*** [[https://drewdevault.com/blog/index.xml][Drew DeVault's Blog]]
- ,** Comics :comic:
- ,*** [[https://xkcd.com/atom.xml][XKCD]]
- ,** People I know
- ,*** [[https://pinkish.bearblog.dev/feed/][Pinkish's Blog]] :software:
- ,*** [[https://jjanzen.ca/rss.xml][Me]] :software:review:
- ,** Internet Infrastructure :internet:software:
- ,*** [[https://daniel.haxx.se/blog/feed/][cURL Blog]]
- ,*** [[https://blog.archive.org/feed/][Archive.org Blog]]
- ,** Reviews :review:
- ,*** [[https://mountainofink.com/?format=rss][Mountain of Ink]]
-#+end_src
diff --git a/.config/emacs/force-custom-file.org b/.config/emacs/force-custom-file.org
deleted file mode 100644
index 8b8a418..0000000
--- a/.config/emacs/force-custom-file.org
+++ /dev/null
@@ -1,8 +0,0 @@
-#+title: Emacs Force the Usage of a =custom.el= File
-
-Force the usage of a =custom.el= file for customizations instead of placing them in =init.el=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/force-custom-file.el :mkdirp yes
- (setq custom-file (concat user-emacs-directory "custom.el"))
- (when (file-exists-p custom-file)
- (load custom-file))
-#+end_src
diff --git a/.config/emacs/init.org b/.config/emacs/init.org
deleted file mode 100644
index 7eec368..0000000
--- a/.config/emacs/init.org
+++ /dev/null
@@ -1,25 +0,0 @@
-#+title: Emacs Configuration
-Load [[./force-custom-file.org][force-custom-file.el]] to ensure that =init.el= is not polluted by customizations.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
- (load "~/.config/emacs/force-custom-file.el")
-#+end_src
-
-Load [[./package-setup.org][package-setup.el]] to allow for package installation.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
- (load "~/.config/emacs/package-setup.el")
-#+end_src
-
-Load [[./user-interface.org][user-interface.el]] to clean up Emacs' user interface and make it look the way I like.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
- (load "~/.config/emacs/user-interface.el")
-#+end_src
-
-Load [[./tools.org][tools.el]] to add functionality to Emacs.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
- (load "~/.config/emacs/tools.el")
-#+end_src
-
-Load [[./languages.org][languages.el]] to add language and language server protocol support.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
- (load "~/.config/emacs/tools.el")
-#+end_src
diff --git a/.config/emacs/languages.org b/.config/emacs/languages.org
deleted file mode 100644
index a0a19e4..0000000
--- a/.config/emacs/languages.org
+++ /dev/null
@@ -1,128 +0,0 @@
-#+title: Emacs Programming Language Setup
-
-* Shell Script
-Run =eglot= on shell script files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'sh-mode-hook 'jj/eglot-setup)
-#+end_src
-
-* C
-Run =eglot= on C and C++ files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'c-mode-hook 'jj/eglot-setup)
- (add-hook 'c++-mode-hook 'jj/eglot-setup)
- (add-hook 'cc-mode-hook 'jj/eglot-setup)
-#+end_src
-
-* Web
-Run =eglot= on HTML files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'html-mode-hook 'jj/eglot-setup)
-#+end_src
-
-Run =eglot= on CSS files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'css-mode-hook 'jj/eglot-setup)
-#+end_src
-
-Run =eglot= on JavaScript files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'js-json-mode-hook 'jj/eglot-setup)
- (add-hook 'js-mode-hook 'jj/eglot-setup)
-#+end_src
-
-* Python
-Run =eglot= on Python files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'python-mode-hook 'jj/eglot-setup)
-#+end_src
-
-* Go
-Install Go support and run =eglot= on Go files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package go-mode
- :init
- (add-hook 'go-mode-hook 'jj/eglot-setup))
-#+end_src
-
-Get documentation for Go variables, functions, and arguments.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package go-eldoc
- :init
- (add-hook 'go-mode-hook 'go-eldoc-setup))
-#+end_src
-
-Automatically generate tests in Go.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package go-gen-test)
-#+end_src
-
-Get refactoring tools from =go-guru=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package go-guru
- :hook (go-mode . go-guru-hl-identifier-mode))
-#+end_src
-
-* Lua
-Install Lua support and run =eglot= on Lua files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package lua-mode
- :init
- (add-hook 'lua-mode-hook 'jj/eglot-setup))
-#+end_src
-
-Better Lisp editing with =lispy=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package lispy
- :hook (emacs-lisp-mode . lispy-mode))
- (use-package lispyville
- :after lispy
- :hook (lispy-mode . lispyville-mode))
-#+end_src
-
-Better parentheses handling in lisp with =parinfer-rust-mode=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package parinfer-rust-mode
- :hook (emacs-lisp-mode . parinfer-rust-mode)
- :init
- (setq parinfer-rust-auto-download t))
-#+end_src
-
-* Markdown
-Install Markdown support and run =eglot= on Markdown files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package markdown-mode
- :init
- (add-hook 'markdown-mode-hook 'jj/eglot-setup))
-#+end_src
-
-* LaTeX
-Run =eglot= on TeX files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (add-hook 'tex-mode-hook 'jj/eglot-setup)
-#+end_src
-
-Use AUCTeX for extra LaTeX integration.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package auctex
- :config
- (add-hook 'LaTeX-mode-hook 'jj/eglot-setup)
- (add-hook 'LaTeX-mode-hook
- (lambda ()
- (put 'LaTeX-mode 'eglot-language-id "latex"))))
-#+end_src
-
-Use CDLaTeX for environment and macro insertion.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package cdlatex
- :config
- (add-hook 'LaTeX-mode-hook #'turn-on-cdlatex))
-#+end_src
-
-* YAML
-Install YAML support and run =eglot= on YAML files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
- (use-package yaml-mode
- :init
- (add-hook 'yaml-mode-hook 'jj/eglot-setup))
-#+end_src
diff --git a/.config/emacs/package-setup.org b/.config/emacs/package-setup.org
deleted file mode 100644
index 6ed238c..0000000
--- a/.config/emacs/package-setup.org
+++ /dev/null
@@ -1,25 +0,0 @@
-#+title: Emacs Package Setup
-Install =straight= for better package management.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/package-setup.el :mkdirp yes
- (defvar bootstrap-version)
- (let ((bootstrap-file
- (expand-file-name
- "straight/repos/straight.el/bootstrap.el"
- (or (bound-and-true-p straight-base-dir)
- user-emacs-directory)))
- (bootstrap-version 7))
- (unless (file-exists-p bootstrap-file)
- (with-current-buffer
- (url-retrieve-synchronously
- "https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
- 'silent 'inhibit-cookies)
- (goto-char (point-max))
- (eval-print-last-sexp)))
- (load bootstrap-file nil 'nomessage))
-#+end_src
-
-Install =use-package= for declarative package installation. Make =use-package= default to =ensure t= so that packages are enabled if they are declared.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/package-setup.el :mkdirp yes
- (straight-use-package 'use-package)
- (setq straight-use-package-by-default t)
-#+end_src
diff --git a/.config/emacs/tools.org b/.config/emacs/tools.org
deleted file mode 100644
index 54da2b4..0000000
--- a/.config/emacs/tools.org
+++ /dev/null
@@ -1,362 +0,0 @@
-#+title: Emacs Tool Setup
-
-* Vi Keybindings
-Use =vi= keybindings with =evil=. Set the undo system to =undo-fu=. Wrapped lines can be moved between with =j= and =k=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package evil
- :init
- (setq evil-want-keybinding nil)
- :config
- (evil-mode)
- (evil-global-set-key 'motion "j" 'evil-next-visual-line)
- (evil-global-set-key 'motion "k" 'evil-previous-visual-line)
- (evil-global-set-key 'motion (kbd "RET") nil)
- :custom
- (evil-undo-system 'undo-fu))
-#+end_src
-
-Use =evil-collection= to include =vi= keybindings in extra modes.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package evil-collection
- :after evil
- :config
- (evil-collection-init))
-#+end_src
-
-* Undo
-Better undo with =undo-fu=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package undo-fu)
-#+end_src
-
-Make undo persistent when closing Emacs with =undo-fu-session=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package undo-fu-session
- :init (undo-fu-session-global-mode 1))
-#+end_src
-
-* Lookup
-Better lookup with =dumb-jump=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package dumb-jump
- :init (add-hook 'xref-backend-functions #'dumb-jump-xref-activate))
-#+end_src
-
-* Version Control
-Install Magit for Git integration.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package magit)
-#+end_src
-
-* Document Viewing
-Replace =DocView= with a better document viewer from =pdf-tools=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package pdf-tools
- :config
- (pdf-tools-install)
- :init
- (add-hook 'pdf-view-mode-hook #'(lambda () (display-line-numbers-mode -1)))
- (add-hook 'TeX-after-compilation-finished-functions
- #'TeX-revert-document-buffer)
- :config
- (setq TeX-view-program-selection '((output-pdf "PDF Tools"))
- TeX-view-program-list '(("PDF Tools" TeX-pdf-tools-sync-view))
- TeX-source-correlate-start-server t))
-#+end_src
-
-Save place in PDFs with =saveplace-pdf-view=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package saveplace-pdf-view
- :config (save-place-mode 1))
-#+end_src
-
-* Org-Mode
-Ensure that =org= is set up before any of this.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package org)
-#+end_src
-Set my =org-mode= directory.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (setq org-directory "~/org")
-#+end_src
-
-Hide emphasis markers because I can see if something is *bold*, /italic/, or =monospace= without needing to see the markers.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (setq org-hide-emphasis-markers t)
-#+end_src
-
-Set up nicer looking bullet points.
-- they look like circles
-- instead of hyphens
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (font-lock-add-keywords 'org-mode
- '(("^ *\\([-]\\) "
- (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•"))))))
-#+end_src
-
-Set up fonts. Don't use =monospace= by default. Do use it where necessary though. Also, make different heading levels different sizes.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (add-hook 'org-mode-hook 'variable-pitch-mode)
- (custom-set-faces
- '(variable-pitch ((t (:family "CMU Serif" :height 130 :weight thin))))
- '(fixed-pitch ((t (:family "SauceCodePro Nerd Font" :height 110 :weight regular))))
- '(org-block ((t (:inherit fixed-pitch))))
- '(org-code ((t (:inherit (shadow fixed-pitch)))))
- '(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
- '(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
- '(org-verbatim ((t (:inherit (shadow fixed-pitch)))))
- '(org-table ((t (:inherit (shadow fixed-pitch)))))
- '(org-document-title ((t (:inherit title :height 2.0 :underline nil))))
- '(org-level-1 ((t (:inherit outline-1 :weight: bold :height 1.75))))
- '(org-level-2 ((t (:inherit outline-2 :weight: bold :height 1.5))))
- '(org-level-2 ((t (:inherit outline-3 :weight: bold :height 1.25))))
- '(org-level-2 ((t (:inherit outline-4 :weight: bold :height 1.1))))
- '(org-level-4 ((t (:inherit outline-4 :height 1.1))))
- '(org-level-5 ((t (:inherit outline-5 :height 1.0))))
- )
-#+end_src
-
-Wrap lines and centre the view to make for a nicer reading experience.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package visual-fill-column)
- (add-hook 'org-mode-hook 'visual-line-mode)
- (add-hook 'org-mode-hook #'(lambda () (display-line-numbers-mode -1)))
- (defun jj/org-mode-visual-fill ()
- (setq visual-fill-column-width 100
- visual-fill-column-center-text t)
- (visual-fill-column-mode 1))
- (add-hook 'org-mode-hook #'jj/org-mode-visual-fill)
-#+end_src
-
-Increase the size of LaTeX previews.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
-#+end_src
-
-Follow links with the return key.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (setq org-return-follows-link t)
-#+end_src
-
-Tangle on save.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (defun org-babel-tangle-config ()
- (when (string-suffix-p ".org" (buffer-file-name))
- (org-babel-tangle)))
- (add-hook 'org-mode-hook
- (lambda ()
- (add-hook 'after-save-hook #'org-babel-tangle-config)))
-#+end_src
-
-* Shell
-Use =eshell= as an integrated shell.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package eshell)
- (global-set-key (kbd "C-c e") 'eshell)
-#+end_src
-
-* Language Servers
-Add =eglot= keybindings.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (global-set-key (kbd "C-c r") 'eglot-rename)
- (global-set-key (kbd "C-c a") 'eglot-code-actions)
-#+end_src
-
-Install =tree-sitter=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package tree-sitter)
- (use-package tree-sitter-langs)
-#+end_src
-
-Define function to set up =eglot= automatically.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (defun jj/eglot-setup ()
- (eglot-ensure)
- (tree-sitter-mode 1)
- (tree-sitter-hl-mode 1))
-#+end_src
-
-* Completions
-Use company for completions with no delay, starting immediately after first character is typed.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package company
- :config
- (add-hook 'after-init-hook 'global-company-mode)
- (setq company-idle-delay 0
- company-minimum-prefix-length 1
- company-selection-wrap-around t))
-#+end_src
-
-Use =vertico= as a completion user interface.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package vertico
- :custom
- (vertico-cycle t)
- :init
- (vertico-mode))
-#+end_src
-
-Use =orderless= to allow typing any portion of a word that you want to search for.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package orderless
- :ensure t
- :custom
- (completion-styles '(orderless basic))
- (completion-category-overrides '((file (styles basic partial-completion)))))
-#+end_src
-
-Get descriptions of items in =vertico= with =marginalia=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package marginalia
- :bind (:map minibuffer-local-map
- ("M-A" . marginalia-cycle))
- :init
- (marginalia-mode))
-#+end_src
-
-Get nerd font icons in completions.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package nerd-icons-completion
- :config
- (nerd-icons-completion-mode))
-#+end_src
-
-Use consult with =vertico= for extra functionality to various functions.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package consult
- :bind (
- ("C-c M-x" . consult-mode-command)
- ("C-c h" . consult-history)
- ("C-c k" . consult-kmacro)
- ("C-c m" . consult-man)
- ("C-c i" . consult-info)
- ([remap Info-search] . consult-info)
- ("C-x M-:" . consult-complex-command)
- ("C-x b" . consult-buffer)
- ("C-x 4 b" . consult-buffer-other-window)
- ("C-x 5 b" . consult-buffer-other-frame)
- ("C-x t b" . consult-buffer-other-tab)
- ("C-x r b" . consult-bookmark)
- ("C-x p b" . consult-project-buffer)
- ("M-#" . consult-register-load)
- ("M-'" . consult-register-store)
- ("C-M-#" . consult-register)
- ("M-y" . consult-yank-pop)
- ("M-g e" . consult-compile-error)
- ("M-g f" . consult-flycheck)
- ("M-g g" . consult-goto-line)
- ("M-g M-g" . consult-goto-line)
- ("M-g o" . consult-outline)
- ("M-g m" . consult-mark)
- ("M-g k" . consult-global-mark)
- ("M-g i" . consult-imenu)
- ("M-g I" . consult-imenu-multi)
- ("M-s d" . consult-fd)
- ("M-s c" . consult-locate)
- ("M-s g" . consult-grep)
- ("M-s G" . consult-git-grep)
- ("M-s r" . consult-ripgrep)
- ("M-s l" . consult-line)
- ("M-s L" . consult-line-multi)
- ("M-s k" . consult-keep-lines)
- ("M-s u" . consult-focus-lines)
- ("M-s e" . consult-isearch-history)
- :map isearch-mode-map
- ("M-e" . consult-isearch-history)
- ("M-s e" . consult-isearch-history)
- ("M-s l" . consult-line)
- ("M-s L" . consult-line-multi)
- :map minibuffer-local-map
- ("M-s" . consult-history)
- ("M-r" . consult-history))
- :hook (completion-list-mode . consult-preview-at-point-mode)
- :init
- (setq register-preview-delay 0.5
- register-preview-function #'consult-register-format)
- (advice-add #'register-preview :override #'consult-register-window)
- (setq xref-show-xrefs-function #'consult-xref
- xref-show-definitions-function #'consult-xref)
- :config
- (consult-customize
- consult-theme :preview-key '(:debounce 0.2 any)
- consult-ripgrep consult-git-grep consult-grep
- consult-bookmark consult-recent-file consult-xref
- consult--source-bookmark consult--source-file-register
- consult--source-recent-file consult--source-project-recent-file
- :preview-key '(:debounce 0.4 any))
- (setq consult-narrow-key "<"))
-#+end_src
-
-Use Flycheck for syntax checking.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package flycheck
- :config
- (add-hook 'after-init-hook #'global-flycheck-mode))
-#+end_src
-
-Use Flyspell for spell checking.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (dolist (hook '(text-mode-hook))
- (add-hook hook (lambda () (flyspell-mode 1))))
- (use-package flyspell-correct
- :after flyspell
- :bind (:map flyspell-mode-map ("C-;" . flyspell-correct-wrapper)))
-#+end_src
-
-* Snippets
-Use =yasnippet= for snippets so I don't need to type as much.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package yasnippet
- :init
- (yas-global-mode 1)
- :config
- (global-set-key (kbd "C-c s") 'yas-insert-snippet))
-#+end_src
-
-Install snippet collection for =yasnippet=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package yasnippet-snippets)
-#+end_src
-
-* Formatting
-Automatically format with Apheleia and =clang-format=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package apheleia
- :init (apheleia-global-mode +1))
- (use-package clang-format)
-#+end_src
-
-* RSS
-Use Emacs as an RSS feed with =elfeed=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package elfeed
- :config
- (global-set-key (kbd "C-c f") 'elfeed)
- (global-set-key (kbd "C-c M-f") 'elfeed-update))
-#+end_src
-
-Make =elfeed= more powerful with =elfeed-goodies=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package elfeed-goodies
- :after elfeed
- :config
- (elfeed-goodies/setup))
-#+end_src
-
-Store my feed in Org-mode [[./feed.org][here]].
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package elfeed-org
- :config
- (elfeed-org)
- (setq rmh-elfeed-org-files (list "~/.config/emacs/feed.org")))
-#+end_src
-
-* Deft
-Use the Deft package to manage notes.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
- (use-package deft
- :config
- (global-set-key (kbd "C-c d") 'deft)
- (setq deft-directory "~/notes/"
- deft-default-extension "org"))
-#+end_src
diff --git a/.config/emacs/user-interface.org b/.config/emacs/user-interface.org
deleted file mode 100644
index b5a860d..0000000
--- a/.config/emacs/user-interface.org
+++ /dev/null
@@ -1,114 +0,0 @@
-#+title: Emacs User Interface
-
-* Theming
-Set the default font to the Source Code Pro nerd font variant. I use size 14 font.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (set-face-attribute 'default t :font "Sauce Code Pro Nerd Font-14")
-#+end_src
-
-Use my custom Emacs theme.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (use-package doom-themes
- :straight (doom-themes :type git :host github :repo "doomemacs/themes"
- :fork (:host github
- :repo "JacobJanzen/emacs-doom-themes"))
- :config
- (setq doom-themes-enable-bold t
- doom-themes-enable-italic t)
- (load-theme 'doom-disco t)
- (doom-themes-org-config))
-
-(add-to-list 'default-frame-alist '(alpha-background . 90))
-#+end_src
-
-Use =doom-modeline= for a nicer modeline.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (use-package doom-modeline
- :init (doom-modeline-mode 1))
-#+end_src
-
-* Clean UI
-Disable the Emacs start screen and make the =scratch= buffer default to empty.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (setq inhibit-startup-screen t)
- (setq initial-scratch-message nil)
-#+end_src
-
-Disable scroll bar, tool bar, and menu bar.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (scroll-bar-mode -1)
- (tool-bar-mode -1)
- (menu-bar-mode -1)
-#+end_src
-
-* Fancy Stuff
-Use line numbers by default.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (global-display-line-numbers-mode 1)
-#+end_src
-
-Highlight changes for an operation with =evil-goggles=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (use-package evil-goggles
- :after evil
- :config
- (evil-goggles-mode)
- (evil-goggles-use-diff-faces))
-#+end_src
-
-Install nerd font icons.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (use-package nerd-icons)
-#+end_src
-
-Scroll one line at a time.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (setq scroll-conservatively most-positive-fixnum)
-#+end_src
-
-Create parent directories when they don't yet exist.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (defun jj/create-non-existent-directory ()
- (let ((parent-directory (file-name-directory buffer-file-name)))
- (when (and (not (file-exists-p parent-directory))
- (y-or-n-p (format "Directory `%s' does not exist! Create it?" parent-directory)))
- (make-directory parent-directory t))))
- (add-to-list 'find-file-not-found-functions #'jj/create-non-existent-directory)
-#+end_src
-
-
-* Whitespace Management
-Use spaces over tabs and set tab width to 4.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (setq-default indent-tabs-mode nil)
- (setq tab-width 4
- c-basic-offset tab-width)
-#+end_src
-
-Delete trailing whitespace on save.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (defun jj/before-save-hook ()
- (unless (eql (with-current-buffer (current-buffer) major-mode)
- 'markdown-mode)
- (delete-trailing-whitespace)))
- (add-hook 'before-save-hook #'jj/before-save-hook)
-#+end_src
-
-* Backup Management
-Don't create backup files.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (setq make-backup-files nil)
-#+end_src
-
-* Customize =dired=
-Use nerd font icons in =dired=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (use-package nerd-icons-dired
- :hook (dired-mode . nerd-icons-dired-mode))
-#+end_src
-
-Use colours in =dired= with =diredfl=.
-#+begin_src emacs-lisp :tangle ~/.config/emacs/user-interface.el :mkdirp yes
- (use-package diredfl
- :init (diredfl-global-mode 1))
-#+end_src
diff --git a/.config/fastfetch/config.org b/.config/fastfetch/config.org
deleted file mode 100644
index 7a2d099..0000000
--- a/.config/fastfetch/config.org
+++ /dev/null
@@ -1,92 +0,0 @@
-#+title: Fastfetch Settings
-Open a JSON object.
-#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes
- {
-#+end_src
-
-Use a =sixel= image for the logo.
-#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes
- "logo": {
- "type": "raw",
- "source": "~/.config/fastfetch/logo.sixel",
- "width": 40,
- "height": 19
- },
-#+end_src
-
-Two spaces between an item and its key.
-#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes
- "display": {
- "separator": " "
- },
-#+end_src
-
-Define the modules in the =fastfetch= display.
-#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes
- "modules": [
- "title",
- {
- "type": "custom",
- "format": "──────────────────────────────────"
- },
- {
- "type": "os",
- "key": ""
- },
- {
- "type": "kernel",
- "key": "󰞸"
- },
- {
- "type": "uptime",
- "key": ""
- },
- {
- "type": "packages",
- "key": ""
- },
- {
- "type": "shell",
- "key": ""
- },
- {
- "type": "display",
- "key": "󰍹"
- },
- {
- "type": "wm",
- "key": ""
- },
- {
- "type": "terminal",
- "key": ""
- },
- {
- "type": "cpu",
- "key": ""
- },
- {
- "type": "gpu",
- "key": ""
- },
- {
- "type": "memory",
- "key": ""
- },
- {
- "type": "disk",
- "key": ""
- },
- {
- "type": "locale",
- "key": ""
- },
- "break",
- "colors"
- ]
-#+end_src
-
-Close the JSON object.
-#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes
-}
-#+end_src
diff --git a/.config/foot/foot.org b/.config/foot/foot.org
deleted file mode 100644
index 01d7489..0000000
--- a/.config/foot/foot.org
+++ /dev/null
@@ -1,66 +0,0 @@
-#+title: Foot Settings
-* Basic Settings
-Use Source Code Pro with Nerd Font in size 10.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- font=SauceCodePro Nerd Font:size=10
-#+end_src
-
-Add 6 pixel padding around the terminal.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- pad=6x6
-#+end_src
-
-* URL
-Use Firefox to open URLs.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- [url]
- launch=firefox ${url}
-#+end_src
-
-* Mouse
-Hide the mouse when typing.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- [mouse]
- hide-when-typing=yes
-#+end_src
-
-* Colours
-The colours are defined here.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- [colors]
-#+end_src
-
-I use a slightly transparent background.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- alpha=0.9
-#+end_src
-
-Set my foreground and background colours.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- background=ece0c9
- foreground=191916
-#+end_src
-
-Set my regular 8 colours.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- regular0=191916
- regular1=ac4438
- regular2=354d52
- regular3=ba9151
- regular4=465b91
- regular5=5b5489
- regular6=4e6062
- regular7=c9ad7a
-#+end_src
-
-Set my bright 8 colours.
-#+begin_src conf :tangle ~/.config/foot/foot.ini :mkdirp yes
- bright0=293c3c
- bright1=d8611c
- bright2=4b7b53
- bright3=d8974b
- bright4=2f3d91
- bright5=735e82
- bright6=6b8f92
- bright7=ece0c9
-#+end_src
diff --git a/.config/fuzzel/fuzzel.org b/.config/fuzzel/fuzzel.org
deleted file mode 100644
index be2d91a..0000000
--- a/.config/fuzzel/fuzzel.org
+++ /dev/null
@@ -1,35 +0,0 @@
-#+title: Fuzzel Configuration
-
-Place Fuzzel above fullscreen windows.
-#+begin_src conf :tangle ~/.config/fuzzel/fuzzel.ini :mkdirp yes
- layer=overlay
-#+end_src
-
-Define fields to search in.
-#+begin_src conf :tangle ~/.config/fuzzel/fuzzel.ini :mkdirp yes
- fields=name,generic,comment,categories,filename,keywords
-#+end_src
-
-Launch terminal programs in =foot=.
-#+begin_src conf :tangle ~/.config/fuzzel/fuzzel.ini :mkdirp yes
- terminal=foot -e
-#+end_src
-
-Use Source Code Pro like the rest of my configuration.
-#+begin_src conf :tangle ~/.config/fuzzel/fuzzel.ini :mkdirp yes
- font=SauceCodePro Nerd Font:size=15
-#+end_src
-
-Set the colours.
-#+begin_src conf :tangle ~/.config/fuzzel/fuzzel.ini :mkdirp yes
- [colors]
- background=ece0c9e6
- selection=cfbc8ce6
- border=ffffff00
-#+end_src
-
-Use a square border.
-#+begin_src conf :tangle ~/.config/fuzzel/fuzzel.ini :mkdirp yes
- [border]
- radius=0
-#+end_src
diff --git a/.config/mpd/mpd.org b/.config/mpd/mpd.org
deleted file mode 100644
index 4eca326..0000000
--- a/.config/mpd/mpd.org
+++ /dev/null
@@ -1,68 +0,0 @@
-#+title: MPD Settings
-* Directories
-Check for music files in =~/Music=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- music_directory "~/Music"
-#+end_src
-
-Put playlists at =~/.config/mpd/playlists=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- playlist_directory "~/.config/mpd/playlists"
-#+end_src
-
-Put database at =~/.config/mpd/database=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- db_file "~/.config/mpd/database"
-#+end_src
-
-Put log file at =~/.config/mpd/log=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- log_file "~/.config/mpd/log"
-#+end_src
-
-Put PID file at =~/.config/mpd/pid=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- pid_file "~/.config/mpd/pid"
-#+end_src
-
-Put the state file at =~/.config/mpd/state=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- state_file "~/.config/mpd/state"
-#+end_src
-
-Put the sticker file at =~/.config/mpd/sticker.sql=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- sticker_file "~/.config/mpd/sticker.sql"
-#+end_src
-
-Use UTF-8 in the file system.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- filesystem_charset "UTF-8"
-#+end_src
-
-* Network
-Run MPD on =localhost=.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- bind_to_address "localhost"
-#+end_src
-
-* Outputs
-Output to PipeWire.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- audio_output {
- type "pipewire"
- name "Pipewire"
- mixer_type "hardware"
- enabled "yes"
- }
-#+end_src
-
-Output to FIFO.
-#+begin_src conf :tangle ~/.config/mpd/mpd.conf :mkdirp yes
- audio_output {
- type "fifo"
- name "my_fifo"
- path "~/.config/mpd/mpd.fifo"
- format "44100:16:2"
- }
-#+end_src
diff --git a/.config/ncmpcpp/bindings.org b/.config/ncmpcpp/bindings.org
deleted file mode 100644
index 1982a6d..0000000
--- a/.config/ncmpcpp/bindings.org
+++ /dev/null
@@ -1,28 +0,0 @@
-#+title: =ncmpcpp= Keyboard Bindings
-Use =vi= motions in =ncmpcpp=.
-#+begin_src conf :tangle ~/.config/ncmpcpp/bindings :mkdirp yes
-def_key "j"
- scroll_down
-def_key "k"
- scroll_up
-def_key "h"
- previous_column
-def_key "l"
- next_column
-def_key "ctrl-b"
- page_up
-def_key "ctrl-u"
- page_up
-def_key "ctrl-f"
- page_down
-def_key "ctrl-d"
- page_down
-def_key "g"
- move_home
-def_key "G"
- move_end
-def_key "n"
- next_found_item
-def_key "N"
- previous_found_item
-#+end_src
diff --git a/.config/ncmpcpp/config.org b/.config/ncmpcpp/config.org
deleted file mode 100644
index 8195877..0000000
--- a/.config/ncmpcpp/config.org
+++ /dev/null
@@ -1,16 +0,0 @@
-#+title: =ncmpcpp= Configuration
-Set the =ncmpcpp= directory to =~/.config/ncmpcpp/=.
-#+begin_src conf :tangle ~/.config/ncmpcpp/config :mkdirp yes
-ncmpcpp_directory = "~/.config/ncmpcpp"
-#+end_src
-
-Set the host/port pair to find the music player daemon at.
-#+begin_src conf :tangle ~/.config/ncmpcpp/config :mkdirp yes
-mpd_host = "localhost"
-mpd_port = "6600"
-#+end_src
-
-Specify the location of the Music directory to be =~/Music=.
-#+begin_src conf :tangle ~/.config/ncmpcpp/config :mkdirp yes
-mpd_music_dir = "~/Music"
-#+end_src
diff --git a/.config/nvim/init.org b/.config/nvim/init.org
deleted file mode 100644
index 9c15739..0000000
--- a/.config/nvim/init.org
+++ /dev/null
@@ -1,22 +0,0 @@
-#+title: Neovim Settings
-This is the entry point for my Neovim configuration. I don't use Neovim much these days, so it is very stripped back from what it once was. Emacs is much comfier for most uses, so Neovim is mostly relegated to editing system configuration files.
-
-Disable timeout to speed things up.
-#+begin_src lua :tangle ~/.config/nvim/init.lua :mkdirp yes
- vim.cmd([[set notimeout]])
-#+end_src
-
-Install plugins in the [[./lua/plugins.org][plugins.lua]] file.
-#+begin_src lua :tangle ~/.config/nvim/init.lua :mkdirp yes
- require('plugins')
-#+end_src
-
-Set up behaviour in the [[./lua/behaviour.org][behaviour.lua]] file.
-#+begin_src lua :tangle ~/.config/nvim/init.lua :mkdirp yes
- require('behaviour')
-#+end_src
-
-Set up appearance in the [[./lua/appearance.org][appearance.lua]] file.
-#+begin_src lua :tangle ~/.config/nvim/init.lua :mkdirp yes
- require('appearance')
-#+end_src
diff --git a/.config/nvim/lua/appearance.org b/.config/nvim/lua/appearance.org
deleted file mode 100644
index 274f438..0000000
--- a/.config/nvim/lua/appearance.org
+++ /dev/null
@@ -1,15 +0,0 @@
-#+title: Neovim Appearance Settings
-Use line numbers.
-#+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes
- vim.opt.number = true
-#+end_src
-
-Turn on syntax highlighting.
-#+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes
- vim.cmd([[
- set termguicolors
- syntax on
- colorscheme default
- set background=light
- ]])
-#+end_src
diff --git a/.config/nvim/lua/behaviour.org b/.config/nvim/lua/behaviour.org
deleted file mode 100644
index 871b65e..0000000
--- a/.config/nvim/lua/behaviour.org
+++ /dev/null
@@ -1,19 +0,0 @@
-#+title: Neovim Behaviour Settings
-
-Use tabs with width 4.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.opt.tabstop = 4
- vim.opt.expandtab = true
- vim.opt.shiftwidth = 4
- vim.opt.autoindent = true
-#+end_src
-
-Better command line completion.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.opt.wildmode = 'longest,list'
-#+end_src
-
-Better management of file types.
-#+begin_src lua :tangle ~/.config/nvim/lua/behaviour.lua :mkdirp yes
- vim.cmd('filetype plugin indent on')
-#+end_src
diff --git a/.config/nvim/lua/plugins.org b/.config/nvim/lua/plugins.org
deleted file mode 100644
index f3027f9..0000000
--- a/.config/nvim/lua/plugins.org
+++ /dev/null
@@ -1,27 +0,0 @@
-#+title: Neovim Plugins
-* Setup
-Use =lazy= to manage plugins. This block activates =lazy=.
-#+begin_src lua :tangle ~/.config/nvim/lua/plugins.lua :mkdirp yes
- local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
- if not vim.loop.fs_stat(lazypath) then
- vim.fn.system({
- "git",
- "clone",
- "--filter=blob:none",
- "https://github.com/folke/lazy.nvim.git",
- "--branch=stable",
- lazypath,
- })
- end
- vim.opt.rtp:prepend(lazypath)
-#+end_src
-
-* Plugins
-I use =lightline= for a nice status bar. The Ayu theme matches my overall colour scheme. =delimitmate= provides better delimiter handling. Trailing whitespace is highlighted with =vim-trailing-whitespace=.
-#+begin_src lua :tangle ~/.config/nvim/lua/plugins.lua :mkdirp yes
- require('lazy').setup({
- 'itchyny/lightline.vim',
- 'Raimondi/delimitMate',
- 'bronson/vim-trailing-whitespace',
- })
-#+end_src
diff --git a/.config/sway/config.org b/.config/sway/config.org
deleted file mode 100644
index bf29a61..0000000
--- a/.config/sway/config.org
+++ /dev/null
@@ -1,274 +0,0 @@
-#+title: Sway Configuration
-* Variables
-Use =super= as modifier key.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- set $mod Mod4
-#+end_src
-
-Use =vi= motions as directional inputs.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- set $left h
- set $down j
- set $up k
- set $right l
-#+end_src
-
-Use =foot= as default terminal.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- set $term foot
-#+end_src
-
-Use =wofi= as app launcher.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- set $menu fuzzel
-#+end_src
-
-* Startup Application
-Use =dbus= environment.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec --no-startup-id dbus-update-activation-environment --all
-#+end_src
-
-Use =mako= as notification daemon.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec mako
-#+end_src
-
-Launch PipeWire without =systemd=.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec gentoo-pipewire-launcher &
-#+end_src
-
-Launch =blueman-applet= as Bluetooth daemon.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec blueman-applet
-#+end_src
-
-Launch music player daemon.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec mpd
-#+end_src
-
-Launch =mpdscribble= as scrobbler daemon.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec mpdscribble
-#+end_src
-
-Launch Emacs daemon.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- exec emacs --daemon
-#+end_src
-
-* Display
-I use a vertical monitor on the left and horizontal monitor on the right.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- output HDMI-A-1 resolution 1920x1080 position 1080 140
- output HDMI-A-2 resolution 1920x1080 transform 90 position 0 0
-#+end_src
-
-Use the file at =~/.wallpaper= as my wallpaper.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- output * bg ~/.wallpaper fill
-#+end_src
-
-Remove borders from windows.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- default_border none
- default_floating_border none
- font pango:monospace 1
-#+end_src
-
-Use 10 pixel gaps.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- gaps inner 10
-#+end_src
-
-Use =waybar= as a top bar.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bar {
- position top
-
- status_command waybar
- mode invisible
- }
-#+end_src
-
-* Input
-Use pointer acceleration.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- input * {
- accel_profile "adaptive"
- pointer_accel -.5
- }
-#+end_src
-
-* Controls
-Add ability to lock the screen with =swaylock=. Turn off the screen after 15 seconds on lock screen.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Control+l exec swaylock --ignore-empty-password --show-failed-attempts --image ~/.wallpaper
- exec swayidle -w timeout 15 'if pgrep -x swaylock; then swaymsg "output * power off"; fi' resume 'swaymsg "output * power on"'
-#+end_src
-
-Add keybinding to open a terminal emulator.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Return exec $term
-#+end_src
-
-Add keybinding for killing a window.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+q kill
-#+end_src
-
-Add keybinding for opening an app launcher.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+d exec $menu
-#+end_src
-
-Holding the modifier key allows moving a window.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- floating_modifier $mod normal
-#+end_src
-
-Add keybinding for reloading the configuration.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+c reload
-#+end_src
-
-Add keybinding to launch logout/power off/restart [[file:powerprompt.org][prompt]] which also activates with the power key.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+e exec bash ~/.config/sway/powerprompt
- bindsym XF86PowerOff exec bash ~/.config/sway/powerprompt
-#+end_src
-
-Change focus keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+$left focus left
- bindsym $mod+$down focus down
- bindsym $mod+$up focus up
- bindsym $mod+$right focus right
-
- bindsym $mod+Left focus left
- bindsym $mod+Down focus down
- bindsym $mod+Up focus up
- bindsym $mod+Right focus right
-#+end_src
-
-Move window keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+$left move left
- bindsym $mod+Shift+$down move down
- bindsym $mod+Shift+$up move up
- bindsym $mod+Shift+$right move right
-
- bindsym $mod+Shift+Left move left
- bindsym $mod+Shift+Down move down
- bindsym $mod+Shift+Up move up
- bindsym $mod+Shift+Right move right
-#+end_src
-
-Change workspace keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+1 workspace number 1
- bindsym $mod+2 workspace number 2
- bindsym $mod+3 workspace number 3
- bindsym $mod+4 workspace number 4
- bindsym $mod+5 workspace number 5
- bindsym $mod+6 workspace number 6
- bindsym $mod+7 workspace number 7
- bindsym $mod+8 workspace number 8
- bindsym $mod+9 workspace number 9
- bindsym $mod+0 workspace number 10
-#+end_src
-
-Move window to workspace keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+1 move container to workspace number 1
- bindsym $mod+Shift+2 move container to workspace number 2
- bindsym $mod+Shift+3 move container to workspace number 3
- bindsym $mod+Shift+4 move container to workspace number 4
- bindsym $mod+Shift+5 move container to workspace number 5
- bindsym $mod+Shift+6 move container to workspace number 6
- bindsym $mod+Shift+7 move container to workspace number 7
- bindsym $mod+Shift+8 move container to workspace number 8
- bindsym $mod+Shift+9 move container to workspace number 9
- bindsym $mod+Shift+0 move container to workspace number 10
-#+end_src
-
-Set split direction keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+v splith
- bindsym $mod+s splitv
-#+end_src
-
-Toggle layout keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+e layout toggle split
-#+end_src
-
-Define full screen keybinding.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+f fullscreen
-#+end_src
-
-Define toggle floating keybinding.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+space floating toggle
-#+end_src
-
-Move focus between floating and tiled layer keybinding.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+space focus mode_toggle
-#+end_src
-
-Focus on the parent window keybinding.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+a focus parent
-#+end_src
-
-Keybindings to move a window to the scratchpad and back from it.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+minus move scratchpad
- bindsym $mod+minus scratchpad show
-#+end_src
-
-Add resize keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- mode "resize" {
- bindsym $left resize shrink width 10px
- bindsym $down resize grow height 10px
- bindsym $up resize shrink height 10px
- bindsym $right resize grow width 10px
-
- bindsym Left resize shrink width 10px
- bindsym Down resize grow height 10px
- bindsym Up resize shrink height 10px
- bindsym Right resize grow width 10px
-
- bindsym Return mode "default"
- bindsym Escape mode "default"
- }
- bindsym $mod+r mode "resize"
-#+end_src
-
-Add screenshot keybinding.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym $mod+Shift+s exec grim -g "$(slurp)" - | wl-copy
-#+end_src
-
-Add volume keybindings.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym XF86AudioRaiseVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
- bindsym XF86AudioLowerVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
- bindsym XF86AudioMute exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
-#+end_src
-
-Add pause keybinding.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- bindsym XF86Eject exec mpc toggle
-#+end_src
-
-* Extras
-Load extra configuration.
-#+begin_src conf :tangle ~/.config/sway/config :mkdirp yes
- include /etc/sway/config.d/*
-#+end_src
diff --git a/.config/sway/poweraction.org b/.config/sway/poweraction.org
deleted file mode 100644
index 68105ca..0000000
--- a/.config/sway/poweraction.org
+++ /dev/null
@@ -1,9 +0,0 @@
-#+title: Sway Power Action Script
-Run this shell script from power off menu to either log off, restart, or power off.
-#+begin_src sh :tangle ~/.config/sway/poweraction :mkdirp yes
- rm ~/.swaynaglock
- case $1 in
- logout) swaymsg exit;;
- ,*) doas "/sbin/$1";;
- esac
-#+end_src
diff --git a/.config/sway/powerprompt.org b/.config/sway/powerprompt.org
deleted file mode 100644
index dcc93fd..0000000
--- a/.config/sway/powerprompt.org
+++ /dev/null
@@ -1,19 +0,0 @@
-#+title: Sway Power Prompt Script
-Activate =swaynag= prompt with power-off options if the lock file is not present which executes an [[file:poweraction.org][action]].
-#+begin_src sh :tangle ~/.config/sway/powerprompt :mkdirp yes
- if test -f ~/.swaynaglock; then
- killall swaynag
- rm ~/.swaynaglock
- else
- touch ~/.swaynaglock
- swaynag --background 00000030 --border 00000030 --border-bottom 00000030 --button-background 00000030 --font=SauceCodePro Nerd Font 256\
- -m '' \
- -b '󰍃' \
- 'bash ~/.config/sway/poweraction logout' \
- -b '⏻' \
- 'bash ~/.config/sway/poweraction poweroff' \
- -b '' \
- 'bash ~/.config/sway/poweraction reboot'
- rm ~/.swaynaglock
- fi
-#+end_src
diff --git a/.config/waybar/config.org b/.config/waybar/config.org
deleted file mode 100644
index 2a4d14b..0000000
--- a/.config/waybar/config.org
+++ /dev/null
@@ -1,110 +0,0 @@
-#+title: Waybar Configuration
-* Layout
-Define the layout of the bar with workspaces and scratchpad on the left, the current window in the middle, and music player daemon, sound, network, CPU usage, memory usage, clock, and system tray on the right.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- {
- "height": 30,
- "spacing": 4,
- "modules-left": ["sway/workspaces", "sway/scratchpad"],
- "modules-center": ["sway/window"],
- "modules-right": ["mpd", "pulseaudio", "network", "cpu", "memory", "clock", "tray"],
-#+end_src
-
-* Components
-Define scratchpad component. To show an icon and the count of items in it.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "sway/scratchpad": {
- "format": "{icon} {count}",
- "show-empty": false,
- "format-icons": ["", ""],
- "tooltip": true,
- "tooltip-format": "{app}: {title}"
- },
-#+end_src
-
-Define music player daemon component to list the current song, album, artist, and position in the song with an icon representing the status. Clicking it opens a TUI interface to the daemon.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "mpd": {
- "format": "{stateIcon} {artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) [{songPosition}|{queueLength}] 🎵",
- "format-disconnected": "Disconnected 🎵",
- "format-stopped": "{consumeIcon}Stopped 🎵",
- "unknown-tag": "N/A",
- "interval": 2,
- "state-icons": {
- "paused": "",
- "playing": ""
- },
- "tooltip-format": "MPD (connected)",
- "tooltip-format-disconnected": "MPD (disconnected)",
- "on-click": "foot -e ncmpcpp"
- },
-#+end_src
-
-Define tray component.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "tray": {
- "icon-size": 21,
- "spacing": 10,
- "show-passive-items": true
- },
-#+end_src
-
-Define clock component to show the current time and a calendar in a tooltip.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "clock": {
- "format": "{:%H:%M\t%Y-%m-%d}",
- "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
- },
-#+end_src
-
-Define CPU usage component to show usage in percent with an icon.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "cpu": {
- "format": "{usage}% ",
- "tooltip": false
- },
-#+end_src
-
-Define memory usage component to show usage in percent with an icon.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "memory": {
- "format": "{}% "
- },
-#+end_src
-
-Define network component to show a Wi-Fi icon if connected and a warning signal if not.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "network": {
- // "interface": "wlp2*", // (Optional) To force the use of this interface
- "format-wifi": "",
- "tooltip": false,
- "format-ethernet": "",
- "format-linked": "",
- "format-disconnected": "⚠",
- "format-alt": "{ifname}: {ipaddr}/{cidr}"
- },
-#+end_src
-
-Define audio component to show the volume level and whether or not it is muted with an icon. Clicking it opens a GUI sound menu.
-#+begin_src js :tangle ~/.config/waybar/config :mkdirp yes
- "pulseaudio": {
- // "scroll-step": 1, // %, can be a float
- "format": "{volume}% {icon}",
- "format-bluetooth": "{volume}% {icon}",
- "format-bluetooth-muted": " {icon}",
- "format-muted": " ",
- "format-source": "{volume}% ",
- "format-source-muted": "",
- "format-icons": {
- "headphone": "",
- "hands-free": "",
- "headset": "",
- "phone": "",
- "portable": "",
- "car": "",
- "default": ["", "", ""]
- },
- "on-click": "pavucontrol"
- }
- }
-#+end_src
diff --git a/.config/waybar/style.org b/.config/waybar/style.org
deleted file mode 100644
index 3f2ae62..0000000
--- a/.config/waybar/style.org
+++ /dev/null
@@ -1,124 +0,0 @@
-#+title: Waybar Styling
-Set global font, colours, and transitions to have a transparent background. The text is white with a small shadow.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- window#waybar {
- font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
- font-size: 13px;
- background: transparent;
- color: #ffffff;
- text-shadow: 1px 1px #64727D;
- transition-property: background-color;
- transition-duration: .5s;
- }
-#+end_src
-
-Remove the border from buttons and make them square.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- button {
- border: none;
- border-radius: 0;
- }
-#+end_src
-
-Hovering over a button should inherit the background colour and add a white border to the bottom.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- button:hover {
- background: inherit;
- box-shadow: inset 0 -3px #ffffff;
- }
-#+end_src
-
-Workspace buttons should have white with a small shadow, a little bit of extra horizontal padding, and a transparent background.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #workspaces button {
- padding: 0 5px;
- text-shadow: 1px 1px #64727D;
- background-color: transparent;
- color: #ffffff;
- }
-#+end_src
-
-Hovering over a workspace button should darken it.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #workspaces button:hover {
- background: rgba(0, 0, 0, 0.2);
- }
-#+end_src
-
-The focused workspace should have a white bottom border.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #workspaces button.focused {
- background: transparent;
- box-shadow: inset 0 -3px #ffffff;
- }
-#+end_src
-
-Urgent workspaces should be red.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #workspaces button.urgent {
- background-color: #eb4d4b;
- }
-#+end_src
-
-Add extra horizontal padding where needed.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #clock,
- #cpu,
- #memory,
- #disk,
- #network,
- #pulseaudio,
- #wireplumber,
- #custom-media,
- #tray,
- #mode,
- #scratchpad,
- #mpd {
- padding: 0 10px;
- }
-#+end_src
-
-Add extra horizontal margins where needed.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #window,
- #workspaces {
- margin: 0 4px;
- }
-#+end_src
-
-Omit margins on the leftmost and rightmost workspaces.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- .modules-left > widget:first-child > #workspaces {
- margin-left: 0;
- }
-
- /* If workspaces is the rightmost module, omit right margin */
- .modules-right > widget:last-child > #workspaces {
- margin-right: 0;
- }
-#+end_src
-
-Passive system tray icons are dimmed.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #tray > .passive {
- -gtk-icon-effect: dim;
- }
-#+end_src
-
-Tray icons that need attention are highlighted.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #tray > .needs-attention {
- -gtk-icon-effect: highlight;
- }
-#+end_src
-
-The scratchpad should be darkened and transparent when empty.
-#+begin_src css :tangle ~/.config/waybar/style.css :mkdirp yes
- #scratchpad {
- background: rgba(0, 0, 0, 0.2);
- }
-
- #scratchpad.empty {
- background-color: transparent;
- }
-#+end_src