my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

*

j3s 2275b20e 4315a7a9

+19 -22
+3 -3
.config/aerc/accounts.conf
··· 1 1 [Personal] 2 2 source = imaps://j3s@c3f.net@imap.migadu.com 3 - source-cred-cmd = pash show c3f 3 + source-cred-cmd = pass show c3f | head -n1 4 4 outgoing = smtps+plain://j3s@c3f.net@smtp.migadu.com 5 - outgoing-cred-cmd = pash show c3f 5 + outgoing-cred-cmd = pass show c3f | head -n1 6 6 default = INBOX 7 - from = Jes <j3s@c3f.net> 7 + from = j3s <j3s@c3f.net> 8 8 copy-to = Sent 9 9
+7
.config/sway/config
··· 186 186 # Show the next scratchpad window or hide the focused scratchpad window. 187 187 # If there are multiple scratchpad windows, this command cycles through them. 188 188 bindsym $mod+minus scratchpad show 189 + 190 + # 191 + # Misc 192 + # 193 + 194 + bindsym $mod+Shift+s grim -g "$(slurp)" - | wl-copy 195 + 189 196 # 190 197 # Resizing containers: 191 198 #
.password-store/c3f.gpg

This is a binary file and will not be displayed.

+5 -1
.profile
··· 1 + PS1='$(prompt) \$ ' 2 + 3 + export ENV=~/.env 1 4 export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:$PATH 2 - export ENV=~/.shinit 5 + export EDITOR=vim 6 + export LANG=en_US.UTF-8
-3
.shinit .env
··· 28 28 source /usr/local/share/chruby/chruby.sh 29 29 chruby ruby-2.6.2 30 30 fi 31 - 32 - export EDITOR=vim 33 - export PS1='$(prompt)$ '
+4 -1
bin/MACC02VK5ECHTD7/brm
··· 2 2 # 3 3 # Remove entire berks cache & start over 4 4 5 - rm -f Berksfile.lock && bundle exec berks install || rm -rf ~/.berkshelf/cookbooks/ && rm -f Berksfile.lock && bundle exec berks install 5 + rm -f Berksfile.lock 6 + bundle exec berks install || rm -rf ~/.berkshelf/cookbooks 7 + rm -f Berksfile.lock 8 + bundle exec berks install
-14
bin/pashmenu
··· 1 - #!/bin/sh -e 2 - # 3 - # posix i think 4 - 5 - cd "$PASH_DIR" 6 - 7 - # strip .gpg extension & preserve newlines; cut things; sort 8 - passwords=$(find . -type f -name "*.gpg" -exec sh -c 'printf "${0%.gpg}\n"' {} \; | cut -d '/' -f 2- | sort) 9 - 10 - password=$(printf '%s' "$passwords" | dmenu) 11 - 12 - [ -n "$password" ] || exit 13 - 14 - pash copy "$password"