clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

update

sspaeti 51b5d45b 316d56e9

+18 -9
+5 -5
hypr/.config/hypr/tiling.conf
··· 66 66 bind = ALT, Tab, bringactivetotop 67 67 68 68 # Resize active window 69 - bind = SUPER SHIFT, L, resizeactive, -100 0 70 - bind = SUPER SHIFT, H, resizeactive, 100 0 71 - bind = SUPER SHIFT, J, resizeactive, 0 -100 72 - bind = SUPER SHIFT, K, resizeactive, 0 100 69 + bind = SUPER SHIFT, H, resizeactive, -100 0 70 + bind = SUPER SHIFT, L, resizeactive, 100 0 71 + bind = SUPER SHIFT, K, resizeactive, 0 -100 72 + bind = SUPER SHIFT, J, resizeactive, 0 100 73 73 74 74 # Scroll through existing workspaces with mainMod + scroll 75 75 bind = SUPER, mouse_down, workspace, e+1 ··· 84 84 85 85 # Toggle groups 86 86 bindd = SUPER SHIFT, G, Toggle window grouping, togglegroup 87 - bindd = SUPER ALT, G, Move active window out of group, moveoutofgroup 87 + bindd = SUPER SHIFT, G, Move active window out of group, moveoutofgroup 88 88 89 89 # # Join groups 90 90 bindd = SUPER ALT, H, Move window to group on left, moveintogroup, l
+12 -3
newsboat/.config/newsboat/Makefile
··· 1 1 .DEFAULT_GOAL := save 2 - .PHONY: decrypt run save clean help 2 + .PHONY: decrypt run urls save clean help 3 3 4 4 # Default target - decrypt and run newsboat 5 5 run: decrypt ··· 23 23 echo "Error: urls.gpg not found"; \ 24 24 exit 1; \ 25 25 fi 26 + 27 + urls: decrypt 26 28 27 29 # Save (encrypt) urls to urls.gpg using environment variable 28 30 save: ··· 54 56 @echo "Newsboat Encrypted URLs Management" 55 57 @echo "" 56 58 @echo "Usage:" 57 - @echo " make run - Decrypt and run newsboat (default)" 58 - @echo " make save - Encrypt urls to urls.gpg" 59 + @echo " make decrypt - Decrypt urls.gpg to urls (for editing)" 60 + @echo " make urls - Decrypt urls.gpg to urls (for editing)" 61 + @echo " make run - Decrypt and run newsboat" 62 + @echo " make save - Encrypt urls to urls.gpg (default)" 59 63 @echo " make clean - Remove decrypted urls file" 64 + @echo "" 65 + @echo "Workflow:" 66 + @echo " 1. make decrypt # Edit urls file" 67 + @echo " 2. make save # Encrypt changes" 68 + @echo " 3. git add & commit" 60 69 @echo "" 61 70 @echo "Environment variable required:" 62 71 @echo " NEWSBOAT_PASS - Passphrase for encryption/decryption"
+1 -1
zsh/.dotfiles/zsh/aliases.shrc
··· 117 117 alias m="neomutt" 118 118 119 119 # alias rss="newsboat" 120 - alias rss='cd ~/.config/newsboat && make run' 120 + alias rss='cd ~/.config/newsboat && NEWSBOAT_PASS="$NEWSBOAT_PASS" make run' 121 121 122 122 # alias mscreener="~/.config/mutt/initial_screening.sh" 123 123 alias mscreener="~/.config/mutt/initial_screening.sh >> ~/.config/mutt/logs/screening.log 2>&1"