8 lines
117 B
Bash
Executable File
8 lines
117 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Find and open Xournal sketch
|
|
|
|
selected=$(ls ~/sketches/*.xopp | fzf)
|
|
|
|
xournalpp "$selected" &
|