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/sh | |
clear ; echo '' ; echo 'Kernel Version' ; uname -r ; cat /proc/asound/version ; lscpu | grep 'Byte Order' ; echo '\' ; echo 'Audio Server and Devices' ; inxi -A ; echo '' ; echo '~' ; echo 'Output device info' ; echo '\' ; pactl info | grep -E 'Default Sink|Server Name' ; echo '' ; echo '~' ; echo 'Device Bitrate Hz' ; echo '\' ; echo 'Pulseaudio' ; pactl info | grep 'Default Sample' | awk {'print $4, $5, $6'} ; echo '|' ; echo 'Pipewire' ; pw-cli info 0 | grep default.clock.rate | awk {'print $2, $3, $4'} ; echo '' ; echo '~' ; echo 'Devices Connected' ; cat /proc/asound/cards ; echo '|' ; echo 'Log/Connected' ; sudo dmesg | grep -E 'Audio' |
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 | |
echo "Roblox Installer by blan.ks and proofread with cleaned up code by killertofus" | |
echo "Before the installation continues I heavily encourage you to read through the script and ensure it is not malicious" | |
sleep 5 | |
if grep avx /proc/cpuinfo 1>/dev/null | |
then | |
echo "you computer meets the requirements to play roblox" | |
else | |
echo "Sadly your computer is too old to play ROBLOX! With the release of Hyperion/Byfron anticheat brought requirements that your computer does not meet. (Missing AVX)" && exit |