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
| { | |
| "BTTPresetCreatorNotes" : "", | |
| "BTTPresetInfoURL" : "", | |
| "BTTPresetName" : "halfwidth", | |
| "BTTPresetColor" : "50, 50, 50, 255.000000", | |
| "BTTPresetUUID" : "A7DA2480-F637-49D8-A863-3EB3D4AB941E", | |
| "BTTPresetContent" : [ | |
| { | |
| "BTTAppBundleIdentifier" : "BT.L", | |
| "BTTAppName" : "Recently Used", |
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/env bash | |
| # | |
| # https://github.com/P3TERX/warp.sh | |
| # Description: Cloudflare WARP Installer | |
| # System Required: Debian, Ubuntu, Fedora, CentOS, Oracle Linux, Arch Linux | |
| # Version: 1.0.40_Final | |
| # | |
| # MIT License | |
| # | |
| # Copyright (c) 2021-2024 P3TERX <https://p3terx.com> |
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
| #!/bin/bash | |
| bucket=??? | |
| host=oss-cn-???.aliyuncs.com | |
| Id=??? | |
| Key=??? | |
| host="${bucket}.${host}" | |
| method=$(echo $1 | tr '[:lower:]' '[:upper:]') | |
| src=$2 |
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
| package main | |
| import ( | |
| "errors" | |
| "net" | |
| "strconv" | |
| "syscall" | |
| "unsafe" | |
| "os" | |
| ) |
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
| sudo pacman -R fakeroot --noconfirm | |
| wget http://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.23.orig.tar.xz | |
| tar xvf fakeroot_1.23.orig.tar.xz | |
| cd fakeroot-1.23 | |
| wget https://aur.archlinux.org/cgit/aur.git/plain/silence-dlerror.patch?h=fakeroot-tcp -O silence-dlerror.patch | |
| patch -p1 -i silence-dlerror.patch | |
| ./bootstrap | |
| ./configure --prefix=/usr \ | |
| --libdir=/usr/lib/libfakeroot \ | |
| --disable-static \ |