QUOTE(EsotericSatire @ Jul 3 2022, 11:19)

Are there any routers that do not have hardcoded backdoors?
Ones where you run openwrt?
Unless you count being able to hold the reset button physically.
QUOTE(cate_chan @ Jul 3 2022, 11:21)

feel like for personal linux systems it works out better to just throw together a script for your personal needs. mine just calls maim -s -u then uploads it to personal file hosting and copies link to clipboard. theres an alternative binding that doesnt do the upload step and copies the entire image to clipboard.
on any good os it should take more than a couple lines of script
Mine saves a file and can optionally put a complete path to the file on clipboard so I can upload it with Ctrl-L Ctrl-V from the file chooser.
QUOTE(cate_chan @ Jul 3 2022, 11:21)

speaking of clipboard annoyances even on windows where its built in these days to do win+shift+s I still see people use some weird 3rd party garbage which links to horrendously js filled sites. some people just cant be saved
They're like the people who use nhentai instead of e-hentai.
QUOTE(Wayward_Vagabond @ Jul 3 2022, 12:32)

On win 10, super + print scr does it, though I honestly don't remember if that's default behavior. It saves a PNG in a folder in 'My images' and flashes the screen slightly darker for a second as the confirmation it did anything. As for my linux systems, hitting printscr brings up a dialog with a thumbnail asking where I want to save to, if I want it in the clipboard or piped to a program, or inexplicably a button to host it on imgur and give a link. xscreenshot in Xubuntu, default behavior again, I think, There's probally a way to make it always do the same thing without asking.
I used to use a dialogue like that (which did not have an imgur button though). Ended up writing a wrapper around ffmpeg that takes a screenshot using 'x11grab'.
I could also make it use kmsgrab for retarded (read: Wayland) systems, but that requires root and so it actually manages to be less secure than an X server where anything can read the screen contents.
My script is nice in that it also handles situations where you just want to take a screenshot of a single window. It calculates the dimensions of a window you click on and then crops accordingly.
Actually, now that I look at my code, the CLI tool is pretty decent... just my UI that runs my CLI tool is shit. If you're just triggering it from a script and don't need to be able to specify a filename/destination path each time, it'd work fine standalone.
This post has been edited by dragontamer8740: Jul 3 2022, 16:13