about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2023-04-16 17:06:22 -0500
committerCase Duckworth2023-04-16 17:06:22 -0500
commit3b177d8c95f70db8e27fd046711f480e81ea3fa7 (patch)
tree078459e4b3ae19c9978a12ea24ade3d336f2345a
parentAdd a bunch of stuff (diff)
downloadetc-3b177d8c95f70db8e27fd046711f480e81ea3fa7.tar.gz
etc-3b177d8c95f70db8e27fd046711f480e81ea3fa7.zip
uhhhh
-rw-r--r--bash/aliases.bash2
-rw-r--r--bash/completion.bash4
-rw-r--r--bash/emacs.bash2
-rw-r--r--bash/functions.bash2
-rw-r--r--bash/prompt.bash25
-rw-r--r--bash/z.bash2
-rw-r--r--bootstrap.manifest7
-rw-r--r--chicken/csirc3
-rw-r--r--git/config2
-rw-r--r--keepassxc/roaming.ini17
-rw-r--r--notmuch/config103
-rw-r--r--notmuch/post-new.tags4
-rw-r--r--npm/npmrc1
-rw-r--r--profile/01_path.sh2
-rw-r--r--profile/manpath.sh4
-rw-r--r--profile/nodejs.sh2
-rw-r--r--profile/profile5
-rw-r--r--profile/python.sh5
-rw-r--r--profile/xdg.sh55
-rw-r--r--xorg/xmodmap279
20 files changed, 382 insertions, 144 deletions
diff --git a/bash/aliases.bash b/bash/aliases.bash index 0132d33..6515873 100644 --- a/bash/aliases.bash +++ b/bash/aliases.bash
@@ -20,7 +20,7 @@ alias ll='ls -l'
20alias tree='tree -F' 20alias tree='tree -F'
21 21
22# make locally 22# make locally
23alias lake='make PREFIX=$LOCAL_PATH ' 23alias lake='make PREFIX=$LOCAL_PREFIX '
24 24
25# bash meta 25# bash meta
26alias rebash='source ~/.bash_profile' 26alias rebash='source ~/.bash_profile'
diff --git a/bash/completion.bash b/bash/completion.bash index 764463e..2b3ca37 100644 --- a/bash/completion.bash +++ b/bash/completion.bash
@@ -2,14 +2,14 @@
2# Source bash completion libraries 2# Source bash completion libraries
3 3
4POSSIBLE_COMPLETION_FILES=( 4POSSIBLE_COMPLETION_FILES=(
5 /etc/bash_completion # Debian 5 /etc/bash_completion # Debian
6 /etc/profile.d/bash_completion.sh # Alpine 6 /etc/profile.d/bash_completion.sh # Alpine
7 # I'm sure there are many more 7 # I'm sure there are many more
8 /usr/share/bash-completion/bash_completion
8) 9)
9 10
10for candidate in "${POSSIBLE_COMPLETION_FILES[@]}"; do 11for candidate in "${POSSIBLE_COMPLETION_FILES[@]}"; do
11 if [[ -r "$candidate" ]]; then 12 if [[ -r "$candidate" ]]; then
12 source "$candidate" 13 source "$candidate"
13 break # XXX: Do I want this?
14 fi 14 fi
15done 15done
diff --git a/bash/emacs.bash b/bash/emacs.bash index 188c64f..3b7bb64 100644 --- a/bash/emacs.bash +++ b/bash/emacs.bash
@@ -18,7 +18,7 @@ setup_vterm() {
18 18
19setup_emacs_shell() { 19setup_emacs_shell() {
20 export PAGER=cat 20 export PAGER=cat
21 export PS1='\w \$ ' 21 # export PS1='\w \$ '
22} 22}
23 23
24# CONSIDER: Could this go in ~/.profile ? 24# CONSIDER: Could this go in ~/.profile ?
diff --git a/bash/functions.bash b/bash/functions.bash index 97f89b8..debea2c 100644 --- a/bash/functions.bash +++ b/bash/functions.bash
@@ -81,7 +81,7 @@ f() {
81} 81}
82 82
83words() { 83words() {
84 grep "$1" /usr/share/dict/words 84 grep -E "$1" /usr/share/dict/words
85} 85}
86 86
87if ! command -v dict >/dev/null 2>&1; then 87if ! command -v dict >/dev/null 2>&1; then
diff --git a/bash/prompt.bash b/bash/prompt.bash index f09d3ab..bee5223 100644 --- a/bash/prompt.bash +++ b/bash/prompt.bash
@@ -26,13 +26,7 @@ __prompt_exit_code() { # __prompt_exit_code CODES...
26 printf '%s\n' "$ec" 26 printf '%s\n' "$ec"
27} 27}
28 28
29two_line_prompt() { 29git_prompt_integration() {
30 PS1=
31
32 # user, host, and cwd
33 PROMPT_DIRTRIM=3 # how many dirs above current to print (rest are '...')
34 PS1+='\[\e[0;46m\]\u@\h \w'
35
36 # git bit 30 # git bit
37 # see https://unix.stackexchange.com/questions/278206 31 # see https://unix.stackexchange.com/questions/278206
38 possible_git_prompt_locations=( 32 possible_git_prompt_locations=(
@@ -45,10 +39,18 @@ two_line_prompt() {
45 for file in "${possible_git_prompt_locations[@]}"; do 39 for file in "${possible_git_prompt_locations[@]}"; do
46 if [[ -f "$file" ]]; then 40 if [[ -f "$file" ]]; then
47 source "$file" && 41 source "$file" &&
48 PS1+='\[\e[0m\]\[\e[35m\]$(__git_ps1)' 42 PS1+='\[\e[35m\]$(__git_ps1) \[\e[0m\]'
49 break 43 break
50 fi 44 fi
51 done 45 done
46}
47
48two_line_prompt() {
49 PS1=
50
51 # user, host, and cwd
52 PROMPT_DIRTRIM=3 # how many dirs above current to print (rest are '...')
53 PS1+='\[\e[0;46m\]\u@\h \w'
52 54
53 # newline 55 # newline
54 PS1+='\[\e[0m\]\n' 56 PS1+='\[\e[0m\]\n'
@@ -62,7 +64,12 @@ two_line_prompt() {
62 64
63smiley_prompt() { 65smiley_prompt() {
64 __prompt_ec() { case $? in 0) echo '^_^' ;; *) echo ';_;' ;; esac } 66 __prompt_ec() { case $? in 0) echo '^_^' ;; *) echo ';_;' ;; esac }
65 PS1='\[\e[1m\]$(__prompt_exit_code "ok=^_^" "fail=;_;") \w\[\e[0m\] ' 67
68 PS1='\[\e[33m\]$(__prompt_exit_code "ok=^_^" "fail=;_;")'
69 PS1+=' \w\[\e[0m\]'
70
71 git_prompt_integration
72
66 PS1+='\[$(__prompt_term_title "$USER@$(hostname): $PWD")\]' 73 PS1+='\[$(__prompt_term_title "$USER@$(hostname): $PWD")\]'
67 PS1+='\$ ' 74 PS1+='\$ '
68} 75}
diff --git a/bash/z.bash b/bash/z.bash index d84fd55..0f644c7 100644 --- a/bash/z.bash +++ b/bash/z.bash
@@ -3,7 +3,7 @@
3 3
4zlua="$HOME/misc/z.lua/z.lua" 4zlua="$HOME/misc/z.lua/z.lua"
5 5
6if [ -f "$zlua" ]; then 6if [ -x "$zlua" ]; then
7 export _ZL_DATA="${XDG_DATA_HOME:-$LOCAL_PREFIX/share}/zlua" 7 export _ZL_DATA="${XDG_DATA_HOME:-$LOCAL_PREFIX/share}/zlua"
8 eval "$(lua "$zlua" --init bash enhanced once)" 8 eval "$(lua "$zlua" --init bash enhanced once)"
9fi 9fi
diff --git a/bootstrap.manifest b/bootstrap.manifest index 28358c3..657095d 100644 --- a/bootstrap.manifest +++ b/bootstrap.manifest
@@ -1,6 +1,6 @@
1### bootstrap.manifest -*- conf -*- 1### bootstrap.manifest -*- conf -*-
2# TAB-separated SOURCEs and DESTINATIONs for configuration-file links to ~. 2# Whitespace-separated SOURCEs and DESTINATIONs for configuration-file links to
3# see bootstrap.sh for details. 3# $HOME. See bootstrap.sh for details.
4 4
5# Custom XDG Directories (just in case they're hardcoded somewhere) 5# Custom XDG Directories (just in case they're hardcoded somewhere)
6~/etc ~/.config 6~/etc ~/.config
@@ -21,3 +21,6 @@ mail/mbsyncrc ~/.mbsyncrc
21xorg/xinitrc ~/.xinitrc 21xorg/xinitrc ~/.xinitrc
22xorg/xsession ~/.xsession 22xorg/xsession ~/.xsession
23xorg/xcompose ~/.Xcompose 23xorg/xcompose ~/.Xcompose
24
25# SBCL
26sbcl/sbclrc ~/.sbclrc \ No newline at end of file
diff --git a/chicken/csirc b/chicken/csirc index 8cc74cf..9ff6c9d 100644 --- a/chicken/csirc +++ b/chicken/csirc
@@ -3,8 +3,7 @@
3(set! ##sys#notices-enabled #f) 3(set! ##sys#notices-enabled #f)
4(import (chicken load)) 4(import (chicken load))
5(load-verbose #f) 5(load-verbose #f)
6(import (r7rs) 6(import (utf8))
7 (utf8))
8;; set up breadline 7;; set up breadline
9(let () 8(let ()
10 (import (chicken format)) 9 (import (chicken format))
diff --git a/git/config b/git/config index 62455ef..d71289b 100644 --- a/git/config +++ b/git/config
@@ -43,6 +43,8 @@
43 # Shortened commonalities 43 # Shortened commonalities
44 st = status -bs 44 st = status -bs
45 ac = !git add . && git commit -m 45 ac = !git add . && git commit -m
46 yeet = push
47 yoink = pull
46 48
47# diffing 49# diffing
48[diff "lisp"] 50[diff "lisp"]
diff --git a/keepassxc/roaming.ini b/keepassxc/roaming.ini index 76df3be..53417cd 100644 --- a/keepassxc/roaming.ini +++ b/keepassxc/roaming.ini
@@ -3,6 +3,8 @@ BackupBeforeSave=true
3ConfigVersion=2 3ConfigVersion=2
4GlobalAutoTypeKey=61 4GlobalAutoTypeKey=61
5GlobalAutoTypeModifiers=469762048 5GlobalAutoTypeModifiers=469762048
6MinimizeAfterUnlock=true
7NumberOfRememberedLastDatabases=1
6UseAtomicSaves=false 8UseAtomicSaves=false
7 9
8[Browser] 10[Browser]
@@ -11,18 +13,28 @@ CustomProxyLocation=
11Enabled=true 13Enabled=true
12 14
13[FdoSecrets] 15[FdoSecrets]
16ConfirmAccessItem=false
14Enabled=true 17Enabled=true
18ShowNotification=false
15 19
16[GUI] 20[GUI]
17AdvancedSettings=true 21AdvancedSettings=true
18ApplicationTheme=classic 22ApplicationTheme=classic
19CompactMode=false 23CompactMode=false
24MinimizeOnClose=true
25MinimizeOnStartup=true
26MinimizeToTray=true
20ShowExpiredEntriesOnDatabaseUnlock=false 27ShowExpiredEntriesOnDatabaseUnlock=false
21TrayIconAppearance=monochrome-light 28ShowTrayIcon=true
29TrayIconAppearance=colorful
22 30
23[PasswordGenerator] 31[PasswordGenerator]
24AdditionalChars= 32AdditionalChars=!@#$%^&*()
33AdvancedMode=true
25ExcludedChars= 34ExcludedChars=
35Length=32
36Logograms=false
37SpecialChars=true
26 38
27[SSHAgent] 39[SSHAgent]
28Enabled=true 40Enabled=true
@@ -30,5 +42,6 @@ Enabled=true
30[Security] 42[Security]
31EnableCopyOnDoubleClick=true 43EnableCopyOnDoubleClick=true
32IconDownloadFallback=true 44IconDownloadFallback=true
45LockDatabaseScreenLock=false
33PasswordEmptyPlaceholder=true 46PasswordEmptyPlaceholder=true
34Security_HideNotes=true 47Security_HideNotes=true
diff --git a/notmuch/config b/notmuch/config deleted file mode 100644 index be90ebc..0000000 --- a/notmuch/config +++ /dev/null
@@ -1,103 +0,0 @@
1# .notmuch-config - Configuration file for the notmuch mail system
2#
3# For more information about notmuch, see https://notmuchmail.org
4
5# Database configuration
6#
7# The only value supported here is 'path' which should be the top-level
8# directory where your mail currently exists and to where mail will be
9# delivered in the future. Files should be individual email messages.
10# Notmuch will store its database within a sub-directory of the path
11# configured here named ".notmuch".
12#
13[database]
14path=/home/case/var/mail
15hook_dir=/home/case/etc/notmuch/default/hooks
16
17# User configuration
18#
19# Here is where you can let notmuch know how you would like to be
20# addressed. Valid settings are
21#
22# name Your full name.
23# primary_email Your primary email address.
24# other_email A list (separated by ';') of other email addresses
25# at which you receive email.
26#
27# Notmuch will use the various email addresses configured here when
28# formatting replies. It will avoid including your own addresses in the
29# recipient list of replies, and will set the From address based on the
30# address to which the original email was addressed.
31#
32[user]
33name=Case Duckworth
34primary_email=case@acdw.net
35other_email=acdw@fastmail.com;acdw@acdw.net;breadpunk@acdw.net;caseandrachel19@acdw.net;caseduckworth@acdw.net;comments@acdw.net;lists@acdw.net;me@acdw.net;pam@acdw.net;ring@acdw.net;sonn-it@acdw.net;webring@acdw.net;caseduckworth@fastmail.com;loosepoops@fea.st;case@clickheredigital.com;case@thebryc.org;case.duckworth@papertutors.co
36
37# Configuration for "notmuch new"
38#
39# The following options are supported here:
40#
41# tags A list (separated by ';') of the tags that will be
42# added to all messages incorporated by "notmuch new".
43#
44# ignore A list (separated by ';') of file and directory names
45# that will not be searched for messages by "notmuch new".
46#
47# NOTE: *Every* file/directory that goes by one of those
48# names will be ignored, independent of its depth/location
49# in the mail store.
50#
51[new]
52tags=inbox;unread;
53ignore=.mbsyncstate;.isyncuidmap.db;.uidvalidity;/.*[.](json|lock|bak|journal|new|drafts)$/;
54
55# Search configuration
56#
57# The following option is supported here:
58#
59# exclude_tags
60# A ;-separated list of tags that will be excluded from
61# search results by default. Using an excluded tag in a
62# query will override that exclusion.
63#
64[search]
65exclude_tags=deleted;spam;Spam;Trash;sent
66
67# Show configuration
68[show]
69extra_headers=List-Post;
70
71# Maildir compatibility configuration
72#
73# The following option is supported here:
74#
75# synchronize_flags Valid values are true and false.
76#
77# If true, then the following maildir flags (in message filenames)
78# will be synchronized with the corresponding notmuch tags:
79#
80# Flag Tag
81# ---- -------
82# D draft
83# F flagged
84# P passed
85# R replied
86# S unread (added when 'S' flag is not present)
87#
88# The "notmuch new" command will notice flag changes in filenames
89# and update tags, while the "notmuch tag" and "notmuch restore"
90# commands will notice tag changes and update flags in filenames
91#
92[maildir]
93synchronize_flags=true
94
95# Cryptography related configuration
96#
97# The following option is supported here:
98#
99# gpg_path
100# binary name or full path to invoke gpg.
101#
102[crypto]
103gpg_path=gpg
diff --git a/notmuch/post-new.tags b/notmuch/post-new.tags index e9dd2f7..f582c08 100644 --- a/notmuch/post-new.tags +++ b/notmuch/post-new.tags
@@ -6,6 +6,7 @@
6 6
7+clickhere +work -- path:clickhere/** 7+clickhere +work -- path:clickhere/**
8-inbox -unread -- tag:TaskIQ 8-inbox -unread -- tag:TaskIQ
9-inbox -unread -- from:taskiq@clickheredigital.com
9-inbox -unread -- from:get@myreports.email or from:mail@semrush.com 10-inbox -unread -- from:get@myreports.email or from:mail@semrush.com
10-inbox -unread -- from:"/Semrush App Center Team/" 11-inbox -unread -- from:"/Semrush App Center Team/"
11-inbox -- to:seo@clickheredigital.com 12-inbox -- to:seo@clickheredigital.com
@@ -14,9 +15,10 @@
14 15
15+paper +work -- path:paper/** 16+paper +work -- path:paper/**
16-inbox -unread -- path:paper/** and subject:"Shift Transfer Request" 17-inbox -unread -- path:paper/** and subject:"Shift Transfer Request"
18-inbox +slack -- from:notification@slack.com
17 19
18# Spam 20# Spam
19+spam -new -- folder:/.*[Ss]pam.*/ or folder:/.*[Jj]unk.*/ 21+spam -new -- (folder:/.*[Ss]pam.*/ or folder:/.*[Jj]unk.*/ or Xspam:yes) and tag:new
20 22
21# Auto-archive 23# Auto-archive
22+archive -new -inbox -- not tag:unread and date:..6M 24+archive -new -inbox -- not tag:unread and date:..6M
diff --git a/npm/npmrc b/npm/npmrc index fc84b78..c2da224 100644 --- a/npm/npmrc +++ b/npm/npmrc
@@ -1,4 +1,3 @@
1prefix=${XDG_DATA_HOME}/npm 1prefix=${XDG_DATA_HOME}/npm
2cache=${XDG_CACHE_HOME}/npm 2cache=${XDG_CACHE_HOME}/npm
3tmp=${XDG_RUNTIME_DIR}/npm
4init-module=${XDG_CONFIG_HOME}/npm/config/npm-init.js 3init-module=${XDG_CONFIG_HOME}/npm/config/npm-init.js
diff --git a/profile/01_path.sh b/profile/01_path.sh index 6675241..8b18f5e 100644 --- a/profile/01_path.sh +++ b/profile/01_path.sh
@@ -1,6 +1,6 @@
1# PATH and variables for $HOME-local installations 1# PATH and variables for $HOME-local installations
2 2
3LOCAL_PREFIX="$LOCAL_PATH" 3LOCAL_PREFIX="$HOME/usr"
4export LOCAL_PREFIX 4export LOCAL_PREFIX
5 5
6# Pkg-config 6# Pkg-config
diff --git a/profile/manpath.sh b/profile/manpath.sh index b52f5f8..bda4fd2 100644 --- a/profile/manpath.sh +++ b/profile/manpath.sh
@@ -3,8 +3,8 @@
3path_add_unsafe MANPATH \ 3path_add_unsafe MANPATH \
4 "${XDG_DATA_HOME:-$LOCAL_PREFIX/share}/man" \ 4 "${XDG_DATA_HOME:-$LOCAL_PREFIX/share}/man" \
5 "$LOCAL_PREFIX/local/man" \ 5 "$LOCAL_PREFIX/local/man" \
6 "$LOCAL_PATH/local/man" \ 6 "$LOCAL_PREFIX/local/man" \
7 "$LOCAL_PATH/man" 7 "$LOCAL_PREFIX/man"
8 8
9# $MANPATH ends with `:' so that manpath(1) will prepend it to its 9# $MANPATH ends with `:' so that manpath(1) will prepend it to its
10# special thing. 10# special thing.
diff --git a/profile/nodejs.sh b/profile/nodejs.sh index 6d95dea..224dbbe 100644 --- a/profile/nodejs.sh +++ b/profile/nodejs.sh
@@ -1,3 +1,3 @@
1# node.js environment 1# node.js environment
2 2
3export npm_config_prefix="$LOCAL_PATH" 3export npm_config_prefix="$LOCAL_PREFIX"
diff --git a/profile/profile b/profile/profile index 9a81186..5faff51 100644 --- a/profile/profile +++ b/profile/profile
@@ -4,10 +4,13 @@
4# Source system profile 4# Source system profile
5source /etc/profile 5source /etc/profile
6 6
7# Local prefix
8export LOCAL_PREFIX="$HOME/usr"
9
7# XDG directories 10# XDG directories
8export XDG_CONFIG_HOME="$HOME/etc" 11export XDG_CONFIG_HOME="$HOME/etc"
9export XDG_CACHE_HOME="$HOME/var/cache" 12export XDG_CACHE_HOME="$HOME/var/cache"
10export XDG_DATA_HOME="$LOCAL_PATH/share" 13export XDG_DATA_HOME="$LOCAL_PREFIX/share"
11 14
12export XDG_DATA_DIRS="${XDG_DATA_DIRS:-/usr/local/share:/usr/share}" 15export XDG_DATA_DIRS="${XDG_DATA_DIRS:-/usr/local/share:/usr/share}"
13export XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS:-/etc/xdg}" 16export XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS:-/etc/xdg}"
diff --git a/profile/python.sh b/profile/python.sh index 80d4ee2..9353cfe 100644 --- a/profile/python.sh +++ b/profile/python.sh
@@ -3,4 +3,7 @@
3# sometimes it's unavoidable. 3# sometimes it's unavoidable.
4 4
5# from grym on #emacs --- TODO: research what this actually does, lol 5# from grym on #emacs --- TODO: research what this actually does, lol
6export PIP_REQUIRE_VIRTUALENV=1 6# it's annoying ... (2023-02-08)
7#export PIP_REQUIRE_VIRTUALENV=1
8
9path_add_to_PATH "$XDG_DATA_HOME/python/bin"
diff --git a/profile/xdg.sh b/profile/xdg.sh index e11c5df..a4e395f 100644 --- a/profile/xdg.sh +++ b/profile/xdg.sh
@@ -4,15 +4,17 @@
4# moved there (e.g., HISTFILE is in history.bash). So variables might 4# moved there (e.g., HISTFILE is in history.bash). So variables might
5# move /out/ of this directory, but they probably won't move /in/. 5# move /out/ of this directory, but they probably won't move /in/.
6 6
7# See also [[https://github.com/b3nj5m1n/xdg-ninja][xdg-ninja]]. 7# See also https://github.com/b3nj5m1n/xdg-ninja,
8# https://wiki.archlinux.org/title/XDG_Base_Directory#Support
8 9
9# Readline 10# Readline
10export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc 11export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc"
12export RLWRAP_HOME="$XDG_DATA_HOME/rlwrap"
11 13
12# Less 14# Less
13export LESSKEY="$XDG_CONFIG_HOME"/less/lesskey 15export LESSKEY="$XDG_CONFIG_HOME/less/lesskey"
14export LESSHISTFILE="$XDG_CACHE_HOME"/less/history 16export LESSHISTFILE="$XDG_CACHE_HOME/less/history"
15mkdir -p "$XDG_CACHE_HOME"/less 17mkdir -p "$XDG_CACHE_HOME/less"
16 18
17# Vim 19# Vim
18export VIMINIT="source ${XDG_CONFIG_HOME:=$HOME/.config}/vim/vimrc" 20export VIMINIT="source ${XDG_CONFIG_HOME:=$HOME/.config}/vim/vimrc"
@@ -27,9 +29,14 @@ export LYNX_CFG="$XDG_CONFIG_HOME/lynx/lynx.cfg"
27export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-$HOME}" 29export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-$HOME}"
28export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc" 30export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"
29export XSERVERRC="$XDG_CONFIG_HOME/X11/xserverrc" 31export XSERVERRC="$XDG_CONFIG_HOME/X11/xserverrc"
32export USERXSESSION="$XDG_CACHE_HOME/X11/xsession"
33export ALTUSERXSESSION="$XDG_CACHE_HOME/X11/Xsession"
34export ERRFILE="$XDG_CACHE_HOME/X11/xsession-errors"
30 35
31# Notmuch 36
32export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:=$HOME/.config}/notmuch/config" 37
38# Notmuch -- https://notmuchmail.org/pipermail/notmuch/2011/007007.html
39export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:=$HOME/.config}/notmuch/default/config"
33 40
34# GNUPG 41# GNUPG
35export GNUPGHOME="$XDG_DATA_HOME/gnupg" 42export GNUPGHOME="$XDG_DATA_HOME/gnupg"
@@ -39,7 +46,39 @@ export ICEAUTHORITY="$XDG_CACHE_HOME/ICEauthority"
39 46
40# mbsync (requires alias) 47# mbsync (requires alias)
41export MBSYNC_CONFIG_HOME="$XDG_CONFIG_HOME/isync/mbsyncrc" 48export MBSYNC_CONFIG_HOME="$XDG_CONFIG_HOME/isync/mbsyncrc"
42alias mbsync='mbsync -c "$MBSYNC_CONFIG_HOME"' 49alias mbsync='command mbsync -c "$MBSYNC_CONFIG_HOME"'
43 50
44# npm 51# npm
45export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc" 52export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
53
54# bash-complete
55export BASH_COMPLETION_USER_FILE="$XDG_CONFIG_HOME/bash/completion"
56
57# aspell
58ASPELL_CONF="per-conf $XDG_CONFIG_HOME/aspell/aspell.conf"
59ASPELL_CONF="$ASPELL_CONF; personal $XDG_CONFIG_HOME/aspell/en.pws"
60ASPELL_CONF="$ASPELL_CONF; repl $XDG_CONFIG_HOME/aspell/en.prepl"
61mkdir -p "$XDG_CONFIG_HOME/aspell"
62export ASPELL_CONF
63
64# Xcompose
65export XCOMPOSEFILE="$XDG_CONFIG_HOME/xorg/xcompose"
66export XCOMPOSECACHE="$XDG_CACHE_HOME/xorg/xcompose"
67
68# sqlite
69export SQLITE_HISTORY="$XDG_DATA_HOME/sqlite_history"
70alias sqlite3='sqlite3 -init "$XDG_CONFIG_HOME/sqlite3/sqliterc"'
71
72# python
73export PYTHONSTARTUPFILE="$XDG_CONFIG_HOME/python/startup"
74export PYTHONPYCACHEPREFIX="$XDG_CACHE_HOME/python"
75export PYTHON_EGG_CACHE="$XDG_CACHE_HOME/python/eggs"
76export PYTHONUSERBASE="$XDG_DATA_HOME/python"
77
78# wget
79export WGETRC="$XDG_CONFIG_HOME/wget/config"
80mkdir -p "$XDG_CONFIG_HOME/wget"
81alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"'
82
83# dvdcss
84export DVDCSS_HOME="$XDG_CACHE_HOME/dvdcss"
diff --git a/xorg/xmodmap b/xorg/xmodmap index 4f7ed21..0117159 100644 --- a/xorg/xmodmap +++ b/xorg/xmodmap
@@ -1,6 +1,277 @@
1! ~/.xmodmap -*- conf-xdefaults -*- 1! xmodmap for the Colemak Mod-DH layout (US, ISO keyboard).
2! http://colemakmods.github.io/mod-dh/
3! Public domain.
2 4
3! Make CapsLock an extra Control 5keycode 49 = grave asciitilde dead_tilde asciitilde
6keycode 10 = 1 exclam exclamdown onesuperior
7keycode 11 = 2 at masculine twosuperior
8keycode 12 = 3 numbersign ordfeminine threesuperior
9keycode 13 = 4 dollar cent sterling
10keycode 14 = 5 percent EuroSign yen
11keycode 15 = 6 asciicircum hstroke Hstroke
12keycode 16 = 7 ampersand eth ETH
13keycode 17 = 8 asterisk thorn THORN
14keycode 18 = 9 parenleft leftsinglequotemark leftdoublequotemark
15keycode 19 = 0 parenright rightsinglequotemark rightdoublequotemark
16keycode 20 = minus underscore endash emdash
17keycode 21 = equal plus multiply division
18
19keycode 24 = q Q adiaeresis Adiaeresis
20keycode 25 = w W aring Aring
21keycode 26 = f F atilde Atilde
22keycode 27 = p P oslash Ooblique
23keycode 28 = b B dead_breve asciitilde
24keycode 29 = j J dstroke Dstroke
25keycode 30 = l L lstroke Lstroke
26keycode 31 = u U uacute Uacute
27keycode 32 = y Y udiaeresis Udiaeresis
28keycode 33 = semicolon colon odiaeresis Odiaeresis
29keycode 34 = bracketleft braceleft guillemotleft U2039
30keycode 35 = bracketright braceright guillemotright U203a
31keycode 51 = numbersign asciitilde dead_circumflex asciitilde
32
33keycode 38 = a A aacute Aacute
34keycode 39 = r R dead_grave asciitilde
35keycode 40 = s S ssharp asciitilde
36keycode 41 = t T dead_acute dead_doubleacute
37keycode 42 = g G dead_ogonek asciitilde
38keycode 43 = m M dead_macron asciitilde
39keycode 44 = n N ntilde Ntilde
40keycode 45 = e E eacute Eacute
41keycode 46 = i I iacute Iacute
42keycode 47 = o O oacute Oacute
43keycode 48 = apostrophe quotedbl otilde Otilde
44
45keycode 94 = z Z ae AE
46keycode 52 = x X dead_circumflex asciitilde
47keycode 53 = c C ccedilla Ccedilla
48keycode 54 = d D dead_diaeresis asciitilde
49keycode 55 = v V oe OE
50keycode 56 = backslash bar asciitilde asciitilde
51keycode 57 = k K dead_abovering asciitilde
52keycode 58 = h H dead_caron asciitilde
53keycode 59 = comma less dead_cedilla asciitilde
54keycode 60 = period greater dead_abovedot asciitilde
55keycode 61 = slash question questiondown asciitilde
56
57keycode 65 = space space space nobreakspace
58
59keycode 108 = Mode_switch Mode_switch
60
61! Remove these 2 lines if you want caps lock unmodified
62keycode 66 = BackSpace BackSpace BackSpace BackSpace
4clear Lock 63clear Lock
5keycode 66 = Control_R 64
6add Control = Control_R 65!clear Shift
66!clear Control
67!clear Mod1
68!clear Mod2
69!clear Mod3
70!clear Mod4
71!clear Mod5
72
73!add Shift = Shift_L Shift_R
74!add Control = Control_L Control_R
75!add Mod1 = Alt_L Alt_R
76!add Mod2 = Num_Lock
77!add Mod4 = Meta_L Meta_R
78!add Mod5 = Scroll_Lock
79
80!keycode 9 = Escape
81!keycode 22 = BackSpace Terminate_Server
82!keycode 23 = Tab ISO_Left_Tab
83!keycode 36 = Return
84!keycode 37 = Control_L
85!keycode 50 = Shift_L
86!keycode 62 = Shift_R
87!keycode 63 = KP_Multiply XF86_ClearGrab
88!keycode 64 = Alt_L Meta_L
89!keycode 67 = F1 XF86_Switch_VT_1
90!keycode 68 = F2 XF86_Switch_VT_2
91!keycode 69 = F3 XF86_Switch_VT_3
92!keycode 70 = F4 XF86_Switch_VT_4
93!keycode 71 = F5 XF86_Switch_VT_5
94!keycode 72 = F6 XF86_Switch_VT_6
95!keycode 73 = F7 XF86_Switch_VT_7
96!keycode 74 = F8 XF86_Switch_VT_8
97!keycode 75 = F9 XF86_Switch_VT_9
98!keycode 76 = F10 XF86_Switch_VT_10
99!keycode 95 = F11 XF86_Switch_VT_11
100!keycode 96 = F12 XF86_Switch_VT_12
101!keycode 77 = Num_Lock Pointer_EnableKeys
102!keycode 78 = Scroll_Lock
103!keycode 79 = KP_Home KP_7
104!keycode 80 = KP_Up KP_8
105!keycode 81 = KP_Prior KP_9
106!keycode 82 = KP_Subtract XF86_Prev_VMode
107!keycode 83 = KP_Left KP_4
108!keycode 84 = KP_Begin KP_5
109!keycode 85 = KP_Right KP_6
110!keycode 86 = KP_Add XF86_Next_VMode
111!keycode 87 = KP_End KP_1
112!keycode 88 = KP_Down KP_2
113!keycode 89 = KP_Next KP_3
114!keycode 90 = KP_Insert KP_0
115!keycode 91 = KP_Delete KP_Decimal
116!keycode 92 = Print Sys_Req
117!keycode 93 = Mode_switch
118!keycode 97 = Home
119!keycode 98 = Up
120!keycode 99 = Prior
121!keycode 100 = Left
122!keycode 102 = Right
123!keycode 103 = End
124!keycode 104 = Down
125!keycode 105 = Next
126!keycode 106 = Insert
127!keycode 107 = Delete
128!keycode 108 = KP_Enter
129!keycode 109 = Control_R
130!keycode 110 = Pause Break
131!keycode 111 = Print Sys_Req
132!keycode 112 = KP_Divide XF86_Ungrab
133!keycode 114 = Pause Break
134!keycode 115 = Super_L
135!keycode 116 = Super_R
136!keycode 117 = Menu
137!keycode 124 = ISO_Level3_Shift
138!keycode 125 = NoSymbol Alt_L
139!keycode 126 = KP_Equal
140!keycode 127 = NoSymbol Super_L
141!keycode 128 = NoSymbol Hyper_L
142!keycode 156 = NoSymbol Meta_L
143
144!keycode 8 =
145!keycode 101 =
146!keycode 118 =
147!keycode 119 =
148!keycode 120 =
149!keycode 121 =
150!keycode 122 =
151!keycode 123 =
152!keycode 129 =
153!keycode 130 =
154!keycode 131 =
155!keycode 132 =
156!keycode 133 =
157!keycode 134 =
158!keycode 135 =
159!keycode 136 =
160!keycode 137 =
161!keycode 138 =
162!keycode 139 =
163!keycode 140 =
164!keycode 141 =
165!keycode 142 =
166!keycode 143 =
167!keycode 144 =
168!keycode 145 =
169!keycode 146 =
170!keycode 147 =
171!keycode 148 =
172!keycode 149 =
173!keycode 150 =
174!keycode 151 =
175!keycode 152 =
176!keycode 153 =
177!keycode 154 =
178!keycode 155 =
179!keycode 157 =
180!keycode 158 =
181!keycode 159 =
182!keycode 160 =
183!keycode 161 =
184!keycode 162 =
185!keycode 163 =
186!keycode 164 =
187!keycode 165 =
188!keycode 166 =
189!keycode 167 =
190!keycode 168 =
191!keycode 169 =
192!keycode 170 =
193!keycode 171 =
194!keycode 172 =
195!keycode 173 =
196!keycode 174 =
197!keycode 175 =
198!keycode 176 =
199!keycode 177 =
200!keycode 178 =
201!keycode 179 =
202!keycode 180 =
203!keycode 181 =
204!keycode 182 =
205!keycode 183 =
206!keycode 184 =
207!keycode 185 =
208!keycode 186 =
209!keycode 187 =
210!keycode 188 =
211!keycode 189 =
212!keycode 190 =
213!keycode 191 =
214!keycode 192 =
215!keycode 193 =
216!keycode 194 =
217!keycode 195 =
218!keycode 196 =
219!keycode 197 =
220!keycode 198 =
221!keycode 199 =
222!keycode 200 =
223!keycode 201 =
224!keycode 202 =
225!keycode 203 =
226!keycode 204 =
227!keycode 205 =
228!keycode 206 =
229!keycode 207 =
230!keycode 208 =
231!keycode 209 =
232!keycode 210 =
233!keycode 211 =
234!keycode 212 =
235!keycode 213 =
236!keycode 214 =
237!keycode 215 =
238!keycode 216 =
239!keycode 217 =
240!keycode 218 =
241!keycode 219 =
242!keycode 220 =
243!keycode 221 =
244!keycode 222 =
245!keycode 223 =
246!keycode 224 =
247!keycode 225 =
248!keycode 226 =
249!keycode 227 =
250!keycode 228 =
251!keycode 229 =
252!keycode 230 =
253!keycode 231 =
254!keycode 232 =
255!keycode 233 =
256!keycode 234 =
257!keycode 235 =
258!keycode 236 =
259!keycode 237 =
260!keycode 238 =
261!keycode 239 =
262!keycode 240 =
263!keycode 241 =
264!keycode 242 =
265!keycode 243 =
266!keycode 244 =
267!keycode 245 =
268!keycode 246 =
269!keycode 247 =
270!keycode 248 =
271!keycode 249 =
272!keycode 250 =
273!keycode 251 =
274!keycode 252 =
275!keycode 253 =
276!keycode 254 =
277!keycode 255 =