mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-01 00:30:58 +02:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
|
#!/usr/bin/env python3
|
||
|
import gi
|
||
|
gi.require_version('Gtk', '3.0')
|
||
|
from gi.repository import Gtk, GLib
|
||
|
|
||
|
import time
|
||
|
import sys
|
||
|
import os
|
||
|
from subprocess import run
|
||
|
from urllib.parse import urljoin
|
||
|
|
||
|
file_name = GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_PICTURES)
|
||
|
file_name = os.path.join(file_name, time.strftime('screenshot_%Y-%m-%d-%H%M%S_grim.png'))
|
||
|
|
||
|
if len(sys.argv) < 2:
|
||
|
run(["grim", file_name], check=True)
|
||
|
else:
|
||
|
if sys.argv[1] in ('-h','--help'):
|
||
|
print("Usage: {} [-h|--help|--region|--window]".format(sys.argv[0]))
|
||
|
sys.exit(0)
|
||
|
elif sys.argv[1] == '--region':
|
||
|
region = run('slurp', check=True, capture_output=True)
|
||
|
run(["grim", '-g', '-', file_name], check=True, input=region.stdout)
|
||
|
elif sys.argv[1] == '--window':
|
||
|
tree = run(['swaymsg', '-t', 'get_tree'], check=True, capture_output=True)
|
||
|
regions = run(['jq', '-r', '.. | select(.pid? and .visible?) | .rect | "\(.x),\(.y) \(.width)x\(.height)"'],
|
||
|
check=True, capture_output=True, input=tree.stdout)
|
||
|
region = run('slurp', check=True, capture_output=True, input=regions.stdout)
|
||
|
run(["grim", '-g', '-', file_name], check=True, input=region.stdout)
|
||
|
else:
|
||
|
sys.exit(1)
|
||
|
# Add created screenshot to Gtk recents list
|
||
|
recent_mgr = Gtk.RecentManager.get_default()
|
||
|
uri = urljoin("file:", file_name)
|
||
|
recent_mgr.add_item(uri)
|
||
|
GLib.idle_add(Gtk.main_quit)
|
||
|
Gtk.main()
|