Use tab-less firefix extension to force windows instead of tabs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Gemini Clipboard | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-03-21 | |
// @description try to take over the world! | |
// @author You | |
// @match https://gemini.google.com/app/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GeforceNow Fullscreen | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://play.geforcenow.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=geforcenow.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function virtual-mic { | |
mic=`pacmd info | grep "Default source" | cut -d":" -f2 | xargs` | |
echo "using ${mic}" | |
pactl load-module module-null-sink sink_name=Loopback sink_properties=device.description="Loopback" | |
pactl load-module module-loopback source=${mic} sink=Loopback | |
} |
Find out windows xid:
wmctrl -l
First column/hex value is the xid, last column is window name. Run gstreamer now:
gst-launch-1.0 ximagesrc use-damage=false xid=0x02e00001 ! videoconvert ! xvimagesink
0x02e00001
is the hex xid from the previous command.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
events { | |
worker_connections 4096; | |
} | |
http { | |
# access_log access.log; # optional access log | |
# error_log error.log; # optional error log | |
server { | |
listen 8080; | |
root dist; | |
location / { |
Create new firefox profile for pwa:
firefox -P
then on gui add a new profile named "app"
reference
Before we edit/create userChrome.css, we first have to make sure it is enabled.
userChrome.css is by default disabled on firefox >= 86:
- in
about:config
settoolkit.legacyUserProfileCustomizations.stylesheets
totrue
to enable userChrome.css