Select Library -> Balatro -> Gear Icon -> Properties
On LAUNCH OPTIONS put:
WINEDLLOVERRIDES="version=n,b" %command%
"Factory" option in Car Settings | |
000000 | |
Developer Options Password: | |
yyyy.mm.dd | |
ex: 2025.01.01 |
I've read through what seems like infinity stack**** posts and various other things, this worked for me on a server with a Tesla card running Mint kernel 6.8.x
$ nvidia-smi
NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure
that the latest NVIDIA driver is installed and running.
I've found a lot of conflicting information on getting one of these up and running on Debian/Ubuntu/Mint, this is a guide
to what I did to get mine working. This was tested on Orange Pi 1.0.2 Bookworm aarch64
and Linux Mint 21.3 x86_64
.
The OrangePi (and possibly other SBC devices) does not provide enough power to the USB port to activate the reader. You will need to get a powered USB hub.
#!/bin/bash | |
# Steam on Linux doesn't seem to like to actually | |
# quit, when you tell it to quit. | |
# Get all of the Steam processes | |
STEAMPROCESSES=$(ps aux | grep Steam | grep valvesoftware) | |
# Loop and kill them one-by-one | |
while read STEAMPROCESSES; do |
wget http://ftp.net.usf.edu/pub/ubuntu/pool/universe/n/ncurses/libtinfo5_6.3-2_amd64.deb
wget http://ftp.net.usf.edu/pub/ubuntu/pool/universe/n/ncurses/libncurses5_6.3-2_amd64.deb
wget http://ftp.net.usf.edu/pub/ubuntu/pool/universe/n/ncurses/libncursesw5_6.3-2_amd64.deb
sudo dpkg -i libtinfo5_6.3-2_amd64.deb
sudo dpkg -i libncurses5_6.3-2_amd64.deb
sudo dpkg -i libncursesw5_6.3-2_amd64.deb
rm -f libtinfo5_6.3-2_amd64.deb libncurses5_6.3-2_amd64.deb libncursesw5_6.3-2_amd64.deb
#!/bin/bash | |
if [[ $1 = "" ]]; then | |
echo "Shows video length in minutes." | |
echo "Expects: videoduration.sh filename.mp4" | |
else | |
length=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "${1}" | sed -E 's/\.[[:digit:]]+$//') | |
zpad=`printf %03d $(($length / 60))` | |
echo "${zpad} min - ${1}" | |
fi |
I've had a lot of problems using the built in blueman application under Ubuntu/Mint distributions. I'm not exactly sure why, frequently devices will connect then instantly disconnect. I've parsed through various StackOverflow articles and other help pages, I could never get a working answer.
If you're having bluetooth issues, do not uninstall the libbluetooth3
package. It
Direct Install: | |
Exec=sh -c 'GDK_SCALE=2 steam %U' | |
Flatpak Install: | |
sh -c 'GDK_SCALE=1.5 /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=/app/bin/steam --file-forwarding com.valvesoftware.Steam @@u %U @@' |
************* update your path here | |
alias yt-dlp="/home/pjobson/bin/yt-dlp --write-sub --write-auto-sub --sub-lang "en.*" --ffmpeg-location /opt/video/bin/ffmpeg -S vcodec:h264,res,acodec:m4a --remux-video mkv --merge-output-format mkv " | |
******************************************************************************************************* update your path here |