literate-dotfiles/image.org
Thomas Dehaeze 3e97711adc Change indentation of all blocks.
Use (setq org-src-preserve-indentation t) for Emacs.
2021-01-08 01:26:27 +01:00

547 B

SXIV Configuration

Press C-x to activate to key handler.

while read file
do
    case "$1" in
        "C-d")
            mv "$file" ~/.trash ;;
        "C-r")
            convert -rotate 90 "$file" "$file" ;;
        "C-c")
            echo -n "$file" | xsel -ib ;;
    esac
done