*
j3s j3s@c3f.net
Thu, 22 Oct 2020 11:56:18 -0500
7 files changed,
19 insertions(+),
22 deletions(-)
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
bin/MACC02VK5ECHTD7/brm
→
bin/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"