Skip to content

Instantly share code, notes, and snippets.

View PhoenixAceVFX's full-sized avatar
✔️
HyprUpld | Redline V5

AromaXR PhoenixAceVFX

✔️
HyprUpld | Redline V5
View GitHub Profile
@PhoenixAceVFX
PhoenixAceVFX / warframe.user.js
Created April 29, 2025 03:47
Tampermonkey | Redirect old Warframe Wiki to new Warframe Wiki
// ==UserScript==
// @name Warframe Wiki Redirect
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Automatically redirects from old Warframe Wiki to new Warframe Wiki
// @author PhoenixAceVFX
// @match https://warframe.fandom.com/wiki/*
// @grant none
// @run-at document-start
// ==/UserScript==
@PhoenixAceVFX
PhoenixAceVFX / piholearch.sh
Last active April 15, 2025 02:03
Arch Linux Pihole Script
#!/bin/bash
# Pi-hole installation script for Arch Linux
# This script must be run as root
# Check if script is run as root
if [ "$(id -u)" -ne 0 ]; then
echo "This script must be run as root" >&2
exit 1
fi
@PhoenixAceVFX
PhoenixAceVFX / buildgfn.sh
Created April 12, 2025 04:14
Build Geforce Now locally for Linux
#!/bin/bash
set -euox pipefail
APP_NAME="GeForceNOW"
APP_ID="geforcenow"
APP_DIR="$HOME/.local/share/$APP_ID"
LAUNCHER_PATH="$HOME/.local/bin/$APP_ID"
DESKTOP_FILE="$HOME/.local/share/applications/$APP_ID.desktop"
ICON_DIR="$HOME/.local/share/icons"
@PhoenixAceVFX
PhoenixAceVFX / hyprfix.sh
Last active March 6, 2025 18:29
Command string to FULLY rebuild all of hyprland to hopefully fix anything
#!/bin/bash
# Function to detect package manager
detect_package_manager() {
if command -v paru &>/dev/null; then
echo "paru"
elif command -v yay &>/dev/null; then
echo "yay"
elif command -v pacman &>/dev/null; then
echo "pacman"