Skip to content

Instantly share code, notes, and snippets.

View fiji-flo's full-sized avatar
💭
🦊

Florian Dieminger fiji-flo

💭
🦊
  • Mozilla
  • Berlin, Germany
View GitHub Profile
This file has been truncated, but you can view the full file.
[{"schema": "https://person-api.sso.mozilla.com/schema/v2/profile", "login_method": {"value": "github", "metadata": {"classification": "INDIVIDUAL CONFIDENTIAL", "last_modified": "1995-08-24T13:10:35", "created": "1989-05-02T13:01:57", "publisher_authority": "mozilliansorg", "verified": false}, "signature": {"publisher": {"alg": "RS256", "typ": "JWT", "value": "xRKoyRqNvqPeReyZOBfR.QTRWTOsRPvbVJhQftXqO.EBgRjreqfJjkldqCgsFm"}, "additional": [{"alg": "RS256", "typ": "JWT", "value": "CRyiRKKsVeyOchixNlWs.RsbURqClNFgRFvSsIltA.eaUjuMYtNHWXqrHZCSvy"}, {"alg": "RS256", "typ": "JWT", "value": "ojwsOAuyCDuKEflQWclC.SDwBsHkJSUkpMHvKGMWe.TwjwMBTXxbGygUfKWEQr"}, {"alg": "RS256", "typ": "JWT", "value": "xVSrEKYYGyoLRQjTJCWd.DUkWoXicGXztwkOmtrPh.bfPeHCTqrEkkBCjjpCcn"}, {"alg": "RS256", "typ": "JWT", "value": "cOthTtGxlixfyJJheAiB.QgOKCxyXJsfYpSfpIfUA.abNhZaLYeELwMFyfXzIL"}]}}, "user_id": {"value": "github|7807", "metadata": {"classification": "PUBLIC", "last_modified": "2016-03-18T20:25:10", "created": "2013-03-20T12:19:41

Keybase proof

I hereby claim:

  • I am fiji-flo on github.
  • I am fiji (https://keybase.io/fiji) on keybase.
  • I have a public key whose fingerprint is 84A8 12AB 5008 0ECD 91DB B9AE B292 A816 C5DF 1D32

To claim this, I am signing this object:

Firefox is no longer supporting disabling the auto update feature via about:config. Previously there was a setting app-update.enabled which could be set via a vendor.js file.

This was moved to the policy engine in Bug 1420514.

Since I'm managing Firefox Nightly with my package manager I wanted to disable auto update again.

In order to do this simply create a directory called distribution in within you Firefox installation directory. Then create a file named policies.json with the following content:

--- dsdt.dsl 2018-03-03 14:47:12.279105691 +0100
+++ dsdt.dsl 2018-03-03 14:26:30.606427931 +0100
@@ -5,7 +5,7 @@
*
* Disassembling to symbolic ASL+ operators
*
- * Disassembly of dsdt.dat, Sat Mar 3 14:47:12 2018
+ * Disassembly of dsdt.dat, Sat Mar 3 13:35:52 2018
*
* Original Table Header:
@fiji-flo
fiji-flo / rc.local
Created August 9, 2017 18:20
some power saving settings
#!/bin/bash
for i in `find /sys/bus/usb/devices/*/power/control`; do
echo auto > $i
done
for i in `find /sys/bus/usb/devices/*/power/autosuspend`; do
echo 2 > $i
done
echo 0 > /proc/sys/kernel/nmi_watchdog
echo 1 > /sys/module/snd_hda_intel/parameters/power_save
for DEVICE in /sys/bus/{pci,spi,i2c}/devices/*; do