(the i parameter disables the controls)
… or you can choose any another video:
(the i parameter disables the controls)
… or you can choose any another video:
| ;@Ahk2Exe-ConsoleApp | |
| #Requires AutoHotkey v2 | |
| #SingleInstance Off | |
| Persistent(true) | |
| FileEncoding('UTF-8') | |
| SetWorkingDir(A_InitialWorkingDir) | |
| parent := ProcessGetName(ProcessGetParent()) |
| // ==UserScript== | |
| // @name Twitch Chatters Count | |
| // @author Flipeador | |
| // @version 1.0.5 | |
| // @icon https://www.google.com/s2/favicons?sz=128&domain=twitch.tv | |
| // @homepageURL https://gist.github.com/flipeador/7cdead05b6f00b34b743dbde071db34d | |
| // @downloadURL https://gist.githubusercontent.com/flipeador/7cdead05b6f00b34b743dbde071db34d/raw/twitch-chatter-count.js | |
| // @require https://gist.githubusercontent.com/flipeador/577200d2ece50b4e0906d1ff589f1935/raw/graphql-tag.js | |
| // @match *://www.twitch.tv/* | |
| // @run-at document-idle |
| // ==UserScript== | |
| // @name Bluesky Translate | |
| // @author Flipeador | |
| // @version 1.0.3 | |
| // @icon https://www.google.com/s2/favicons?sz=128&domain=bsky.app | |
| // @homepageURL https://gist.github.com/flipeador/56ca9b5798987d175f0a5e9bc97f6977 | |
| // @downloadURL https://gist.github.com/flipeador/56ca9b5798987d175f0a5e9bc97f6977/raw/bluesky-translate.js | |
| // @match https://bsky.app/* | |
| // @run-at document-idle | |
| // ==/UserScript== |
| @echo off | |
| powercfg.exe /h /size 100 | |
| powercfg.exe /h /type full | |
| control.exe /name Microsoft.PowerOptions /page pageGlobalSettings | |
| pause |
| #Requires AutoHotkey v2 | |
| key := "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" | |
| RegWrite(Mod(A_Hour + 23, 24), 'REG_DWORD', key, 'ActiveHoursStart') | |
| RegWrite(Mod(A_Hour + 11, 24), 'REG_DWORD', key, 'ActiveHoursEnd') | |
| RegWrite(2, 'REG_DWORD', key, 'SmartActiveHoursState') |