Done with Fedora 35 i3 spin on X230 laptop. Kind of a build log.
BTRFS with subvolumes, using Custom. Encryption with LUKS2 enabled.
- /
- /home
| // ==UserScript== | |
| // @name Copr RPM Spec Quickview | |
| // @namespace nick@windblume | |
| // @match https://copr.fedorainfracloud.org/coprs/*/*/ | |
| // @grant none | |
| // @version 0.1.0 | |
| // @author Nicholas Tay <[email protected]> | |
| // @description Quickly jump to the spec file for COPR packages (on the project's package page) | |
| // @homepage https://gist.github.com/nicholastay/7a8d7883bb7e30ac36da344746b6126a | |
| // @license Zlib |
| (setq inhibit-startup-screen t) | |
| (menu-bar-mode 0) | |
| (tool-bar-mode 0) | |
| (scroll-bar-mode 0) | |
| (setq ido-enable-prefix t) | |
| (ido-mode 1) | |
| ;; Line numbers + its colour | |
| ;;(set-face-foreground 'line-number-current-line "#FFFF00") |
| { | |
| "name": "Iris Rev. 4", | |
| "vendorProductId": 3406840406, | |
| "macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
| "layers": [ | |
| [ | |
| "MT(MOD_LALT,KC_ESC)", | |
| "KC_1", | |
| "KC_2", | |
| "KC_3", |
| // ==UserScript== | |
| // @name ChatHistory4FFZ | |
| // @namespace nexerqdev | |
| // @homepage https://gist.github.com/nicholastay/097ea9d54425dba474bf78747d976d56 | |
| // @version 0.1.2 | |
| // @description Chat history for FFZ with robotty's service | |
| // @author Nexerq <[email protected]> | |
| // @license Zlib/libpng | |
| // @match *://twitch.tv/* | |
| // @match *://www.twitch.tv/* |
| { | |
| "version": 2, | |
| "type": "full", | |
| "values": { | |
| "p:0:chat.lines.borders": 3, | |
| "fschat.top": "41px", | |
| "p:0:layout.discover": false, | |
| "p:0:i18n.format.date": "YYYY-MM-DD", | |
| "p:0:chat.emote-menu.icon": true, | |
| "p:0:metadata.player-stats": true, |
| import sys | |
| import re | |
| lyrReg = re.compile('^\\[\\d+:\\d+\\.\\d+\\]\\s+?$', re.MULTILINE) | |
| def readInFile(filename, isTiming=True): | |
| out = [] | |
| with open(filename, 'r', encoding='UTF-8') as f: | |
| for line in f: | |
| line = line.strip() |
| import re | |
| from streamlink.plugin import PluginError | |
| from streamlink.plugin.api import useragents | |
| from streamlink.plugins.facebook import Facebook | |
| class Facebookgg(Facebook): | |
| _gaming_url_re = re.compile(r'''https?://(?:www\.)?(?:fb\.gg|facebook\.com/gaming)/(?P<fb_page>.*)''') | |
| _gaming_re = re.compile(r'''"permalinkURL":"(.*?)"''') |
| // ==UserScript== | |
| // @name op.gg spectate override | |
| // @namespace http://nicholastay.github.io/ | |
| // @version 0.1.1 | |
| // @author Nicholas Tay | |
| // @license MIT | |
| // @match *://*op.gg/* | |
| // @grant none | |
| // ==/UserScript== |