Some documentation

This commit is contained in:
Nox Sluijtman 2025-03-10 17:47:53 +01:00
parent 3d375c89f8
commit df260f4f4f
Signed by: Egg
SSH key fingerprint: SHA256:2sG9X3C7Xvq2svGumz1/k7cm8l4G9+qAtAeugqB4J9M

View file

@ -18,6 +18,7 @@ def clipboard [] {
$in | ^pngquant - | ^xclip -sel clip -t image/png
}
# Take a screenshot of all screens
def main [--clipboard (-c)] {
let scrot = ^maim -ui root | complete
match $clipboard {
@ -32,6 +33,7 @@ def main [--clipboard (-c)] {
}
}
# Take a screenshot of a the current window
def "main window" [--clipboard (-c)] {
let window = ^xdotool getactivewindow
let scrot = ^maim -ui $window | complete
@ -47,6 +49,7 @@ def "main window" [--clipboard (-c)] {
}
}
# Take a screenshot based on selection
def "main selection" [--clipboard(-c)] {
let scrot = ^maim -su | complete
match $scrot.exit_code {