Skip to content

Instantly share code, notes, and snippets.

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

_Numeri Numeri-Dev

✔️
HyprUpld | Redline V5
View GitHub Profile
@Numeri-Dev
Numeri-Dev / 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==
@Numeri-Dev
Numeri-Dev / piholearch.sh
Last active July 15, 2025 01:29
Arch Linux Pihole Script
#!/bin/bash
# A modernized and robust installer for Pi-hole on Arch Linux.
# Exit immediately if a command exits with a non-zero status.
# Treat unset variables as an error.
# Print a trace of simple commands.
set -euo pipefail
# --- Constants and Variables ---
readonly PIHOLE_PKG="pi-hole-server"
@Numeri-Dev
Numeri-Dev / 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"
@Numeri-Dev
Numeri-Dev / 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"