mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-07-31 20:21:51 -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
|
||||
machine.
|
||||
|
||||
Made password prompts traverse symlinks when gathering password names for
|
||||
autocomplete.
|
||||
|
||||
* `XMonad.Actions.DynamicProjects`
|
||||
|
||||
Make the input directory read from the prompt in `DynamicProjects`
|
||||
|
@@ -198,6 +198,7 @@ escapeQuote = concatMap escape
|
||||
getPasswords :: FilePath -> IO [String]
|
||||
getPasswords passwordStoreDir = do
|
||||
files <- runProcessWithInput "find" [
|
||||
"-L", -- Traverse symlinks
|
||||
passwordStoreDir,
|
||||
"-type", "f",
|
||||
"-name", "*.gpg",
|
||||
|
Reference in New Issue
Block a user