Skip to content

Instantly share code, notes, and snippets.

View allpandasarecute's full-sized avatar

allpandasarecute allpandasarecute

View GitHub Profile
@BlurryFlurry
BlurryFlurry / askpass-rofi.sh
Created October 11, 2018 10:38
Ask sudo password rofi
#!/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/://)"
@heroheman
heroheman / ranger-cheatsheet.md
Last active March 15, 2026 20:23
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts
@tuxfight3r
tuxfight3r / vim-shortcuts.md
Last active March 10, 2026 18:51
VIM SHORTCUTS

VIM KEYBOARD SHORTCUTS

MOVEMENT

h        -   Move left
j        -   Move down
k        -   Move up
l        -   Move right
$        -   Move to end of line
0        -   Move to beginning of line (including whitespace)