mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-07 07:21:53 -07:00
Make XMonad.Prompt.Pass traverse symlinks for its tab completion
This commit is contained in:
@@ -56,6 +56,9 @@
|
|||||||
pass-otp (https://github.com/tadfisher/pass-otp) has been setup in the running
|
pass-otp (https://github.com/tadfisher/pass-otp) has been setup in the running
|
||||||
machine.
|
machine.
|
||||||
|
|
||||||
|
Made password prompts traverse symlinks when gathering password names for
|
||||||
|
autocomplete.
|
||||||
|
|
||||||
* `XMonad.Actions.DynamicProjects`
|
* `XMonad.Actions.DynamicProjects`
|
||||||
|
|
||||||
Make the input directory read from the prompt in `DynamicProjects`
|
Make the input directory read from the prompt in `DynamicProjects`
|
||||||
|
@@ -198,6 +198,7 @@ escapeQuote = concatMap escape
|
|||||||
getPasswords :: FilePath -> IO [String]
|
getPasswords :: FilePath -> IO [String]
|
||||||
getPasswords passwordStoreDir = do
|
getPasswords passwordStoreDir = do
|
||||||
files <- runProcessWithInput "find" [
|
files <- runProcessWithInput "find" [
|
||||||
|
"-L", -- Traverse symlinks
|
||||||
passwordStoreDir,
|
passwordStoreDir,
|
||||||
"-type", "f",
|
"-type", "f",
|
||||||
"-name", "*.gpg",
|
"-name", "*.gpg",
|
||||||
|
Reference in New Issue
Block a user