Keine Beschreibung

cuu fc49089869 add 97_Music Player vor 1 Jahr
.awesome e1431e2d42 move awesome vor 5 Jahren
.twm a8b061d3d4 twm clean icons vor 5 Jahren
Menu fc49089869 add 97_Music Player vor 1 Jahr
skin f1e6180f52 add icons,warehouse plugin.json vor 2 Jahren
sysgo 368e674d3f add Spanish and French translation files vor 5 Jahren
.cpirc ebe74953f9 cpirc fix vor 1 Jahr
.gitignore 83ef50dedb update vor 2 Jahren
.twmrc 79f9b7cb0b twm vor 5 Jahren
.xinitrc 989977073a remove launcher/GPU switch in Settings vor 1 Jahr
.xorg.conf 70fa42423a add xorg configs,change xinit logic vor 5 Jahren
.xorg_lima.conf 70fa42423a add xorg configs,change xinit logic vor 5 Jahren
README.md 7294bf16c0 first vor 5 Jahren
app 83ef50dedb update vor 2 Jahren
debug-load.sh f1e6180f52 add icons,warehouse plugin.json vor 2 Jahren
dwm-mod 7e62954a93 update dwm-mod vor 5 Jahren
launchergo f3b31f364d use launchergo_ver_2023.json vor 1 Jahr
load.sh fc1b2290f0 use /tmp/x.log to log all stdout of launchergo vor 2 Jahren
md5sum.log f3b31f364d use launchergo_ver_2023.json vor 1 Jahr
md5sum.sh 83ef50dedb update vor 2 Jahren
update.sh 7294bf16c0 first vor 5 Jahren

README.md

GameShell launcher

This is the launcher for GameShell based on 320x240 resolution and D-Pad layout. Screenshot

Create the necessary user and group

  • User name: cpi
  • Password: cpi
  • Group ID: 31415 with group name: cpifav

    sudo adduser cpi  
    sudo groupadd cpifav -g 31415  
    sudo adduser cpi cpifav  
    

Directory structure

/home/cpi/
├── launchergo <- Here we are
├── apps
│   ├── emulators
│   └── Menu 
├── games
│   ├── FreeDM
│   ├── MAME
│   └── nxengine
└── music

Create the necessary directories

mkdir -p /home/cpi/apps/emulators  
mkdir -p /home/cpi/games  
mkdir -p /home/cpi/music  

Dependent packages

  • wicd (For Wi-Fi)
  • mpd (For music player)

Create “.mpd_cpi.conf” config

vim ~/.mpd_cpi.conf

music\_directory    "/home/cpi/music"
playlist\_directory    "/home/cpi/music/playlists"
db\_file    "/home/cpi/music/tag\_cache"
log\_file    "/tmp/mpd.log"
pid\_file    "/tmp/mpd.pid"
state\_file    "/home/cpi/music/mpd\_state"
sticker\_file    "/home/cpi/music/sticker.sql"
user    "cpi"
bind\_to\_address    "/tmp/mpd.socket"
auto\_update    "yes"
auto\_update\_depth    "3" 
input {
    plugin "curl"
}

audio\_output {
    type    "alsa"
    name    "My ALSA Device"
}

audio\_output {
    type    "fifo"
    name    "my_fifo"
    path    "/tmp/mpd.fifo"
    format    "44100:16:2"
}

filesystem\_charset    "UTF-8"