GM-Script-Writer-62850
GM-Script-Writer-62850
I did notice one it passes it returns to normal, usually about the time it get another spike Also sensors that report a value that are not being displayed on...
not sure where the thermal sensor cold bugs at, but i think most can go a bit below zero, readings of -10 C are probably valid
i think you can dump the output to /dev/null by adding this to the emulator's command `> /dev/null 2>&1` ``` retroarch -L /usr/lib/libretro/stella_libretro.so --appendconfig ~/.config/retroarch/retroarch.atari.cfg %ROM% becomes retroarch -L /usr/lib/libretro/stella_libretro.so...
in your bat script start it with `@echo off` that might do it, you could just run es using a shortcut icon or startup entry
IIRC it is the last line of /etc/profile
have it run `clear;emulationstaion > /dev/null 2>&1`
`clear` should have got that off the screen
no problem, you can just post your last few lines and i can edit them, there must be something i am forgetting
try this `if [ -z "${SSH_CONNECTION}" ];then clear;emulationstation > /dev/null 2>&1;fi` that can also be is a readable fashion written like this, but i assumed you wanted it in a...
most likely it is output from dmesg just googled something try this ``` if [ -z "${SSH_CONNECTION}" ];then echo "6" | sudo tee /proc/sys/kernel/printk clear emulationstation > /dev/null 2>&1 fi...