| Shortcut | Description |
|---|---|
ranger |
Start Ranger |
Q |
Quit Ranger |
R |
Reload current directory |
? |
Ranger Manpages / Shortcuts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Take password prompt from STDIN, print password to STDOUT | |
| # the sed piece just removes the colon from the provided | |
| # prompt: rofi -p already gives us a colon | |
| rofi -dmenu \ | |
| -password \ | |
| -no-fixed-num-lines \ | |
| -p "$(printf "$1" | sed s/://)" |