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
#!/bin/sh | |
# https://collinmbarrett.com/protonvpn-dd-wrt-api-script/ | |
# specify PATH to run from cron | |
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/jffs/sbin:/jffs/bin:/jffs/usr/sbin:/jffs/usr/bin:/mmc/sbin:/mmc/bin:/mmc/usr/sbin:/mmc/usr/bin:/opt/sbin:/opt/bin:/opt/usr/sbin:/opt/usr/bin | |
# kill openvpn | |
PID=$(pidof openvpn) | |
kill -s SIGTERM "$PID" |
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
// Deprecated: Moved to https://github.com/collinbarrett/box-setup/blob/master/windows-terminal/profiles.json | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{4a745997-9220-4b9c-9fac-c18e93b46ab2}", | |
"profiles": [ | |
{ | |
"guid": "{4a745997-9220-4b9c-9fac-c18e93b46ab2}", | |
"hidden": false, | |
"name": "MinGW-w64", |
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
<TypePattern DisplayName="StyleCop Classes, Interfaces, & Structs" RemoveRegions="All"> | |
<TypePattern.Match> | |
<Or> | |
<Kind Is="Class" /> | |
<Kind Is="Struct" /> | |
<Kind Is="Interface" /> | |
</Or> | |
</TypePattern.Match> | |
<Entry DisplayName="Constants"> | |
<Entry.Match> |
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
/* | |
Windows | |
Location: C:\Users\<YourUsername>\AppData\Roaming\Mozilla\Firefox\Profiles\<YourFirefoxProfile>\chrome | |
Notes: | |
If minimize, maximize, and close buttons are no longer visible, enable the Title Bar or Menu Bar in Firefox Customize. | |
macOS | |
Location: /Users/<YourUsername>/Library/Application Support/Firefox/Profiles/<YourFirefoxProfile>/chrome | |
Notes: | |
If minimize, maximize, and close buttons overlap other controls, add the Flexible Space in Firefox Customize. |