this repo has no description
1
fork

Configure Feed

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

add fzf script for killing ssh sockets

Aria 6784ba4f fbcf95a7

+18
+1
nix/modules/environment/workstation/default.nix
··· 50 50 audio-out-fzf 51 51 squawk-fzf 52 52 yk2fa-fzf 53 + ssh-master-fzf 53 54 54 55 man-5-dsm 55 56 ];
+1
nix/packages.nix
··· 32 32 audio-out-fzf 33 33 mnt-fzf 34 34 squawk-fzf 35 + ssh-master-fzf 35 36 36 37 aria-emacs 37 38 aria-emacs-nox
+16
nix/pkgs/fzf-scripts.nix
··· 230 230 ''; 231 231 }) ids; 232 232 }; 233 + 234 + ssh-master-fzf = final.buildFzfScript { 235 + name = "ssh-master"; 236 + height = "5"; 237 + layout = "reverse"; 238 + genChoices = '' 239 + pgrep -af '.ssh/master' 240 + ''; 241 + doChoice = '' 242 + kill "$(echo "$CHOICE" | awk '{print $1}')" 243 + ''; 244 + extraInputs = [ 245 + final.procps 246 + final.uutils-coreutils 247 + ]; 248 + }; 233 249 }