Skip to content

Instantly share code, notes, and snippets.

View SimonSeider's full-sized avatar

Simon Seider SimonSeider

View GitHub Profile
@SimonSeider
SimonSeider / block-vlc.ps1
Last active May 14, 2026 03:22
block-vlc.ps1
$base = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
# we enable the DisallowRun policy for the current user
New-Item -Path $base -Force | Out-Null
New-ItemProperty -Path $base -Name "DisallowRun" -PropertyType DWord -Value 1 -Force | Out-Null
# we create the application block list container
$block = Join-Path $base "DisallowRun"
New-Item -Path $block -Force | Out-Null
#!/bin/bash
set -e
clear
echo "======================================"
echo " Arch Linux + Hyprland Guided Installer"
echo "======================================"
sleep 2
# Root check
@SimonSeider
SimonSeider / install-vcpkg.sh
Last active November 29, 2025 14:26
Linux VCPKG Quick install Script
#!/usr/bin/env bash
set -e
VCPKG_DIR="/opt/vcpkg"
BASHRC_FILE="$HOME/.bashrc"
ZSHRC_FILE="$HOME/.zshrc"
TAG="# >>> vcpkg PATH <<<"
uninstall() {
[ -d "$VCPKG_DIR" ] && sudo rm -rf "$VCPKG_DIR"