small pixel drawing of a pufferfish dotfiles

*
j3s j3s@c3f.net
Thu, 22 Oct 2020 11:56:18 -0500
commit

2275b20e8c4c28afad6c85f9052b2c0279d51b0f

parent

4315a7a90eb4ac8e930bd4f910ebd3a1441a0921

M .config/aerc/accounts.conf.config/aerc/accounts.conf

@@ -1,9 +1,9 @@

[Personal] source = imaps://j3s@c3f.net@imap.migadu.com -source-cred-cmd = pash show c3f +source-cred-cmd = pass show c3f | head -n1 outgoing = smtps+plain://j3s@c3f.net@smtp.migadu.com -outgoing-cred-cmd = pash show c3f +outgoing-cred-cmd = pass show c3f | head -n1 default = INBOX -from = Jes <j3s@c3f.net> +from = j3s <j3s@c3f.net> copy-to = Sent
M .config/sway/config.config/sway/config

@@ -186,6 +186,13 @@

# Show the next scratchpad window or hide the focused scratchpad window. # If there are multiple scratchpad windows, this command cycles through them. bindsym $mod+minus scratchpad show + +# +# Misc +# + + bindsym $mod+Shift+s grim -g "$(slurp)" - | wl-copy + # # Resizing containers: #
M .profile.profile

@@ -1,2 +1,6 @@

+PS1='$(prompt) \$ ' + +export ENV=~/.env export PATH=~/bin/$(hostname):~/bin/$(uname -m):~/bin:$PATH -export ENV=~/.shinit +export EDITOR=vim +export LANG=en_US.UTF-8
M .shinit.env

@@ -28,6 +28,3 @@ export PASH_CLIP="pbcopy"

source /usr/local/share/chruby/chruby.sh chruby ruby-2.6.2 fi - -export EDITOR=vim -export PS1='$(prompt)$ '
M bin/MACC02VK5ECHTD7/brmbin/MACC02VK5ECHTD7/brm

@@ -2,4 +2,7 @@ #!/bin/sh -e

# # Remove entire berks cache & start over -rm -f Berksfile.lock && bundle exec berks install || rm -rf ~/.berkshelf/cookbooks/ && rm -f Berksfile.lock && bundle exec berks install +rm -f Berksfile.lock +bundle exec berks install || rm -rf ~/.berkshelf/cookbooks +rm -f Berksfile.lock +bundle exec berks install
D bin/pashmenu

@@ -1,14 +0,0 @@

-#!/bin/sh -e -# -# posix i think - -cd "$PASH_DIR" - -# strip .gpg extension & preserve newlines; cut things; sort -passwords=$(find . -type f -name "*.gpg" -exec sh -c 'printf "${0%.gpg}\n"' {} \; | cut -d '/' -f 2- | sort) - -password=$(printf '%s' "$passwords" | dmenu) - -[ -n "$password" ] || exit - -pash copy "$password"