(laptop) Gen 21: removed passhelper.sh and reduced sleep time in passhelper script

This commit is contained in:
pagedmov
2024-10-15 10:36:48 -04:00
parent fb9ac59f52
commit b20b6f7263
3 changed files with 7 additions and 24 deletions

12
flake.lock generated
View File

@@ -825,11 +825,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1728930569, "lastModified": 1728998640,
"narHash": "sha256-OvKCDKpI8sHA07Ct+f5uotGr9ATrIJ/fUfwZZnD8Tmk=", "narHash": "sha256-mbtviOFtza3J6e2wlkqICSj0PcqEsPpAlPuVnvLBAfM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "96670f5e62fc211ff06be5ed7654c44318ddf7e2", "rev": "9c76575706ddbe8b71b8dee7c399d7dba2141635",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -952,11 +952,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728879439, "lastModified": 1728965841,
"narHash": "sha256-spvD0mgjj0xMv4qinSl5lxGLe8V8JAeIWNs0HF0i3kE=", "narHash": "sha256-IwFh7KUJ9saIONcklEkXR3ANtGxkZsNdtpeT6eyF01Q=",
"owner": "gerg-l", "owner": "gerg-l",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "c3463a8497fef3150aa8635d32b61b16e17a1e6b", "rev": "3dfd050f21568902449939f085e8d1aa28fb9913",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -15,6 +15,6 @@ pass_string=$(find $HOME/.password-store -type f | sed 's|.*/.password-store/||;
# pass it through fmt for soft word wrapping # pass it through fmt for soft word wrapping
pass -c "$pass_string" | fmt -w 45 pass -c "$pass_string" | fmt -w 45
/run/current-system/sw/bin/rm /tmp/passhelperfile /run/current-system/sw/bin/rm /tmp/passhelperfile
sleep 1.5 sleep 0.5
exit 0 exit 0
'') '')

View File

@@ -1,17 +0,0 @@
#!/run/current-system/sw/bin/bash
# prevent multiple instances, conditional check happens in the hyprland bind
touch /tmp/passhelperfile
trap "[ -f /tmp/passhelperfile ] && /run/current-system/sw/bin/rm /tmp/passhelperfile" EXIT SIGHUP SIGINT
# get passwords from password store, remove .password store/ prefix and .gpg suffix, exlude .gpg-id file, open results in fzf
pass_string=$(find $HOME/.password-store -type f | sed 's|.*/.password-store/||; s|\.gpg$||' | sed 's|^\([^/]*\)|\x1b[32m\1\x1b[0m|' | rg -v "\.git|.gpg-id" | sort -r | fzf --border --border-label="$(whoami)'s keyring" --ansi --layout=reverse)
[ $? = 0 ] || { [ -f /tmp/passhelperfile ] && /run/current-system/sw/bin/rm /tmp/passhelperfile; exit 1; }
# pass it through fmt for soft word wrapping
pass -c "$pass_string" | fmt -w 45
/run/current-system/sw/bin/rm /tmp/passhelperfile
sleep 10
exit 0