This file contains hidden or 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
| #Requires AutoHotkey >=2.0 | |
| SetNumlockState("AlwaysOn") | |
| SetScrollLockState("AlwaysOff") | |
| ; Win+` to open terminal in Quake mode | |
| $#`:: { | |
| DetectHiddenWindows true | |
| if not WinExist("ahk_exe WindowsTerminal.exe") { | |
| Run "wt -w _quake" |
This file contains hidden or 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
| ! Instructions: | |
| ! Literally just paste it into the filter list. Tested with uBlock Origin, might work with Adblock Plus or others (but I'm not going to bother to test it). | |
| ! Comment out anything you don't want to block (lines starting with ! are comments) | |
| !!! ADS !!! | |
| ! Pro banner | |
| musescore.com##._sQKq | |
| ! "What do you want to play?" (Pro ad in disguise) | |
| musescore.com##.SGtse |
This file contains hidden or 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
| # Maintainer: Katie Wolfe <~kt/public-inbox@lists.sr.ht> | |
| # Updated by ThePython10110 | |
| pkgname=('plogue-aria' 'plogue-chipspeech' 'plogue-chipsounds' 'plogue-sforzando' 'plogue-tablewarp2') | |
| pkgbase=plogue-plugins | |
| pkgver='1.982~beta1' | |
| debver='1.982~beta1' | |
| dirver='1.982beta1' | |
| license=('custom') | |
| pkgrel=1 | |
| epoch=1 |
This file contains hidden or 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
This file contains hidden or 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
| #!/usr/bin/bash | |
| # Step 0: Use Arch | |
| # Step 0.5: If you don't use Arch, try Distrobox (and use Arch). https://github.com/89luca89/distrobox | |
| # Step 1: | |
| sudo pacman -S ardour | |
| # That's it. | |
| # This is why I use Arch, by the way. | |
| # After using Linux Mint for a while, I got annoyed with APT | |
| # because nothing was up to date unless you added a separate | |
| # repository... And with Arch, if something can be installed |
This file contains hidden or 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
| import os | |
| from shutil import rmtree | |
| symlink_path = r"C:\Portable\MCSymlink" | |
| class LauncherData: | |
| def __init__(self, **kwargs): | |
| if not kwargs["path"]: | |
| raise KeyError("Path must be included") | |
| self.path = kwargs["path"] |