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
| :: Made by github.com/faizul726 | |
| :: Born on 20251030-1126 | |
| @echo off | |
| setlocal enabledelayedexpansion | |
| echo OreUI Utilities Script for Minecraft Bedrock Edition | |
| echo. | |
| pushd "%~dp0" |
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
| ln -s /usr/share/themes /home/$USER/.local/share/themes # Delete that folder if you already have first | |
| sudo flatpak override --filesystem=xdg-data/themes:ro # /home/$USER/.local/share/themes | |
| sudo flatpak override --filesystem=xdg-config/gtk-3.0:ro # /home/$USER/.config/gtk-3.0 | |
| sudo flatpak override --filesystem=xdg-config/gtk-4.0:ro # /home/$USER/.config/gtk-4.0 | |
| Confirmed working for LocalSend and Emote as of July 22, 2025 |
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
| name: Default | |
| desc: It is what it is. | |
| folder: default | |
| - | |
| name: No wave effects | |
| desc: Disables water and leaves waving animation. | |
| folder: no_wave | |
| - | |
| name: No fog effect | |
| desc: Disables fog. |
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
| @echo off | |
| setlocal enabledelayedexpansion | |
| cls | |
| if "%~n0" equ "1-matject-subpacks" ( | |
| set "export=true" | |
| echo @echo off>sample.bat | |
| echo.>sample_data.bat | |
| ) else (set "export=") | |
| set "parse=Name" | |
| for /F "usebackq tokens=*" %%A in ("subpacks_matject.txt") do ( |
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
| @echo off | |
| setlocal enabledelayedexpansion | |
| pushd "%~dp0" | |
| set "filename=%~n0" | |
| set "GRY=[90m" | |
| set "WHT=[97m" | |
| set "RED=[91m" | |
| set "RST=[0m" |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <dirent.h> | |
| #define HEX_PATTERN1 "\x4D\x65\x74\x61\x6C\x00\x0B" | |
| #define REPLACEMENT1 "\x4D\x65\x74\x61\x6C\x00\x0A" | |
| #define HEX_PATTERN2 "\x4D\x65\x74\x61\x6C\x01\x0B" | |
| #define REPLACEMENT2 "\x4D\x65\x74\x61\x6C\x01\x0A" |
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
| @echo off | |
| :start | |
| setlocal | |
| title Tic Tac Toe in Command Prompt by faizul726 | |
| set turn=0 | |
| set "i=[ ]" | |
| set "ii=[ ]" | |
| set "iii=[ ]" |