This file contains 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
/* | |
* test stachybotrys for QOwnNotes | |
* how to style the UI https://github.com/pbek/QOwnNotes/issues/2187 | |
* styles and icons https://github.com/pbek/QOwnNotes/tree/develop/src/libraries/qdarkstyle | |
* how to make a plugin: https://github.com/qownnotes/scripts/tree/master/black-mode | |
* https://het.as.utexas.edu/HET/Software/html/stylesheet-examples.html | |
* https://doc.qt.io/qt-6/stylesheet-reference.html | |
*/ | |
/* |
This file contains 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
ESC quit | |
r cycle_values video-rotate 90 180 270 0 | |
l cycle_values loop-file inf yes |
This file contains 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
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/*---------------------------------------------------------- | |
Firefox proton theme tweaks | |
references: https://gist.github.com/tung/439935f55cc83af20defd7867ec89c82; | |
*/ | |
/* remove radius from buttons and tabs */ | |
*|*:root { | |
--toolbarbutton-border-radius: 0 !important; | |
--tab-border-radius: 0 !important; |
This file contains 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
"editor.tokenColorCustomizations": { | |
"[Material Theme Darker]": { // replace with your dark theme | |
"textMateRules":[ | |
{ | |
"scope": [ | |
"markup.italic.markdown", | |
"punctuation.definition.italic.markdown", | |
"punctuation.definition.bold.markdown", | |
"markup.bold.markdown", | |
"string.other.link.title.markdown", |
This file contains 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
/* | |
objkt-capture-frames.js | |
Description: Browser console script to render frames from a rotating OBJKT on hicetnunc.xyz and save as PNGs | |
Version: 0.2 | |
Author: Heracles Papatheodorou / @Arty2 | |
Website: https://gist.github.com/Arty2/cc438cc516bfc443cf4f7756343188bc | |
License: MIT License | |
*/ | |
// styles for the new elements |
This file contains 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
// static/scripts/fixedsearch/fixedsearch.js | |
/*-------------------------------------------------------------- | |
fixedsearch — Super fast, client side search for Hugo.io with Fusejs.io | |
based on https://gist.github.com/cmod/5410eae147e4318164258742dd053993 | |
--------------------------------------------------------------*/ | |
if (typeof variable !== 'undefined') { | |
console.log('fixedsearch.js already loaded'); | |
} else { | |
fixedsearch = function(){ |
This file contains 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
@echo OFF | |
rem loop through all JPG files | |
for %%f IN (*.jpg) DO ( | |
rem make a new directory with the same filename | |
mkdir %%~nf | |
rem move file the new directory | |
move %%f %%~nf/%%f | |
rem go inside the new directory | |
cd %%~nf |
This file contains 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
; make Logitech craft windows transparent, restart the script and use the crown to hide it | |
; see https://github.com/Logitech/logi_craft_sdk/issues/31 | |
; ← everything after this character is a comment | |
SetTimer, LogiOverlay, -5000 ; this timer runs once, after 5 seconds | |
LogiOverlay(){ | |
If WinExist("ahk_EXE LogiOverlay.exe") { | |
WinClose, ahk_EXE LogiOverlay.exe ; close the window, comment to disable | |
; WinSet, Transparent, 20, ahk_EXE LogiOverlay.exe ; uncomment this line to change its opacity instead | |
} |
This file contains 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
; An AutoHotKey script to mute/unmute all microphones on a system level. Toggle with Caps Lock. | |
; Emits a single beep on mute, double on unmute. Tray icon changes accordingly. | |
; Requires https://www.nirsoft.net/articles/mute_microphone_command_line.html | |
; Note: SoundSet doesn't work as intented | |
; TODO: detect tap and hold to speak, based on https://github.com/YoYo-Pete/AutoHotKeys/blob/master/PushToTalk.ahk | |
; https://www.howtogeek.com/446418/how-to-use-caps-lock-as-a-modifier-key-on-windows/ | |
; also https://stackoverflow.com/questions/1794258/detect-a-double-key-press-in-autohotkey | |
$Capslock:: |
This file contains 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
/* | |
A set of styles that turns the sideba and menus partialy transparent when the cursor is not over them. | |
Includes some stylistic changes over the display of text, eg. — instead of bullet points, Anonymous Pro font (if exists on the system). | |
*/ | |
::-moz-selection { background: #000; } | |
::selection { background: #000; } | |
/*--------- |
NewerOlder