Some checks failed
tests / core (macos-latest, py3.11) (push) Has been cancelled
tests / core (macos-latest, py3.12) (push) Has been cancelled
tests / core (macos-latest, py3.13) (push) Has been cancelled
tests / core (ubuntu-latest, py3.11) (push) Has been cancelled
tests / core (ubuntu-latest, py3.12) (push) Has been cancelled
tests / core (ubuntu-latest, py3.13) (push) Has been cancelled
tests / doctor CLI smoke test (push) Has been cancelled
14 lines
350 B
Python
14 lines
350 B
Python
from pathlib import Path
|
|
|
|
def_paths = {
|
|
"Darwin": Path.home() / "Desktop",
|
|
"Windows": Path.home() / "Pictures" / "Screenshots",
|
|
"Linux": Path.home() / "Pictures",
|
|
}
|
|
|
|
sc_pathpatterns = {
|
|
"Darwin": ["SCR*.png", "Screenshot*.png"],
|
|
"Windows": ["Screenshot*.png"],
|
|
"Linux": ["Screenshot*.png", "scrot*.png", "screenshot*.png"],
|
|
}
|