This file contains 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
::keepassxc.bat | |
@echo off | |
"C:\Program Files\KeePassXC\KeePassXC.exe" --pw-stdin "C:\beyond9thousand\important documents\syncthing\backup\application settings files\Password\Passwords.kdbx" < "C:\beyond9thousand\utility_programs\powershell_scripts\keepassxc\pwd.txt" |taskkill /F /IM cmd.exe | |
::powertunnel.bat | |
start javaw -Xmx200m -jar "C:\beyond9thousand\utility_programs\Programs\Power Tunnel\PowerTunnel.jar" --start --minimized | |
::syncthing.lnk | |
C:\ProgramData\chocolatey\bin\syncthing.exe -no-console -no-browser |
This file contains 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
#attempt 2 | |
mkfs.btrfs -f /dev/nvme0n1p5 | |
mount /dev/nvme0n1p5 /mnt -o compress-force=zstd #enables filesystem compression using the zstd algorithm | |
mount #listing active mounts | |
#mounting the efi partition for uefi to boot into | |
mkdir /mnt/efi | |
mount /dev/nvme0n1p1 /mnt/efi |