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
| $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 |
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 | |
| set -e | |
| clear | |
| echo "======================================" | |
| echo " Arch Linux + Hyprland Guided Installer" | |
| echo "======================================" | |
| sleep 2 | |
| # Root check |
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 | |
| 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" |