Skip to content

Instantly share code, notes, and snippets.

@killertofus
killertofus / roblox.sh
Last active November 9, 2023 19:09
roblox installer
#!/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
@killertofus
killertofus / find sound setting linux
Last active March 28, 2023 01:21
find sound setting linux
#!/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'