[ Main ] [ Home ] [ Work ] [ Code ] [ Rants ] [ Readings ] [ Links ] |
[2024] [2023] [2022] [2021] [2020] [2019] [2018] December November October September August July June May April March February January [2017] [2016] [2015] [2014] [2013] [2012] [2011] [2010] [2009] [2008] [2007] [2006] [2005] [2004] [2003] |
[Fri Jun 29 16:38:26 CDT 2018]Two simple commands to cancel print jobs from the command line on Debian: {link to this entry}# lpstat -o # cancel -a [printer] [Tue Jun 26 14:19:24 CDT 2018]
I've been struggling a bit to get the Firefox browser configured to act as a Site-specific browser once Mozilla stopped
supporting Mozilla
Prism. Yes, I know Google Chrome does that easily, but I don't really like the fact that is
released as freeware but with a proprietary license. The thing, though, is
that configuring Firefox as a desktop app is relatively straightforward, as
documented here. Yet, as it
tends to happen, the devil is in the details for, once things are configured
according to that page, I started running into weird behaviors here and there.
For example, even though I was clearly specifying a given icon in my .desktop
file, the GNOME Shell
still appeared to choose them pretty much at random from all my configured
web apps. Sure, you can (as a matter of fact, you should use the
[Wed Jun 20 13:38:08 CDT 2018]A very simple line to find the PID of a process and kill it (e.g., a connection via SSH to "myserver"): {link to this entry}$ pgrep -f myserver | xargs kill -9 [Thu Jun 7 08:06:57 CDT 2018]I may have already written about this on these pages, but just in case... I needed to remove an individual entry from Firefox's autofill form history (a test URL I had entered while testing one of my scripts), and wasn't sure how to do it. This page from Firefox's own support site has the answer: {link to this entry} |