Sin categoría
Iniciar KODI como servicio en raspberry Pi 3
Crear un icono.(opcional) [Desktop Entry] Name=KODI Comment=KODI MEDIA CENTER Exec=/usr/local/bin/startkodi Icon=/usr/share/kodi/media/icon256x256.png Terminal=false Type=Application Categories=Sound;Video; StartupNotify=true nano /usr/local/bin/startkodi #!/bin/bash fbset_bin=`which fbset` xset_bin=`which xset` xrefresh_bin=`which xrefresh` if [ ! -z $fbset_bin ]; then DEPTH2=`$fbset_bin | head -3 | tail -1 | cut -d » » -f 10` fi kodi «$@» if [ ! -z $fbset_bin ]; then if [ «$DEPTH2» == «8» ]; then DEPTH1=16 else DEPTH1=8 fi $fbset_bin -depth $DEPTH1 > /dev/null 2>&1 $fbset_bin -depth Leer más…