- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
| chrome://global/locale/global-strres.properties | |
| chrome://branding/locale/brand.properties | |
| chrome://global/locale/commonDialogs.properties | |
| chrome://global/locale/css.properties | |
| chrome://global/locale/dom/dom.properties | |
| chrome://global/locale/intl.properties | |
| chrome://global/locale/layout/HtmlForm.properties | |
| chrome://global/locale/layout/htmlparser.properties | |
| chrome://global/locale/layout_errors.properties | |
| chrome://global/locale/mathml/mathml.properties |
| #navigator-toolbox { | |
| display: none; | |
| } |
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Terminal=false | |
| Name=Pinafore | |
| Icon=pinafore | |
| StartupWMClass=pinafore | |
| Exec=firefox -P App --class pinafore --new-window http://pinafore.social/ --height 800 --width 500 |
| // build with env GOOS=linux GOARCH=arm GOARM=5 go build | |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" | |
| "github.com/godbus/dbus" | |
| ) |
| # needs root. | |
| from evdev import InputDevice, categorize, ecodes | |
| # input device (right one is nice to find using sudo evemu-describe) | |
| dev = InputDevice('/dev/input/event14') | |
| print(dev) | |
| # list of x, y tuples |
| import sys | |
| import tkinter | |
| import time | |
| try: | |
| from evdev import InputDevice, categorize, ecodes | |
| except ImportError: | |
| print("This script requires the evdev package (https://pypi.org/project/evdev/). ") | |
| exit() | |
| try: |
| # Paul's Wayfire config | |
| # Check out https://github.com/WayfireWM/wayfire/wiki/Configuration for help | |
| ### Output configuration | |
| # Layout: Positiom in virtual pixels | |
| # Negative values are mishandled by XWayland and some tools, so stay positive :-) | |
| # 15" 4K laptop display | |
| [output:eDP-1] |
| /*** Publishing: Hide things that aren't very useful for a read-only view */ | |
| /** Hide page properties (public pages will always have public: true) */ | |
| .content .pre-block { display: none; } | |
| /** Title */ | |
| /* Make title non-editable */ | |
| #main-container .page-title { pointer-events: none; } | |
| /** Hide useless sidebar stuff */ |