mirror of
https://github.com/clockworkpi/launcher_deot.git
synced 2025-12-19 19:08:54 +01:00
178 lines
3.4 KiB
Markdown
178 lines
3.4 KiB
Markdown
# GameShell DEOT launcher
|
|
This is the DEOT UI launcher for GameShell based on 320x240 resolution and D-Pad layout.
|
|

|
|
|
|
Screenshot Source: https://alioss.gcores.com/site/deot/index.html
|
|
|
|
# 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
|
|
```
|
|
|
|
# Clone the GitHub repository
|
|
* Login as: cpi
|
|
* Get launcher (System Apps)
|
|
```
|
|
cd
|
|
git clone https://github.com/your_launcher.git ~/launcher
|
|
```
|
|
|
|
* Get Menu (Custom Apps)
|
|
```
|
|
cd
|
|
git clone https://github.com/your_menu.git ~/apps/Menu
|
|
```
|
|
|
|
# Directory structure
|
|
```
|
|
/home/cpi/
|
|
├── apps
|
|
│ ├── Menu <-Custom Apps
|
|
│ ├── emulators
|
|
│ └── ...
|
|
│
|
|
├── launcher <-Here we are
|
|
│ ├── Menu <-System apps
|
|
│ ├── sys.py
|
|
│ ├── skin
|
|
│ └── ...
|
|
│
|
|
├── 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
|
|
* validators, numpy, requests, python-mpd2, beeprint, python-pycurl, python-alsaaudio, python-pygame, python-gobject, python-xlib, python-wicd
|
|
* wicd (For Wi-Fi)
|
|
* mpd (For music player)
|
|
|
|
## Install dependent packages
|
|
```
|
|
sudo apt-get -y install mpd ncmpcpp git libuser
|
|
sudo apt-get -y install python-wicd wicd wicd-curses python-pycurl python-alsaaudio python-pygame python-gobject python-xlib
|
|
|
|
sudo apt-get -y install python-pip
|
|
sudo pip install validators numpy requests python-mpd2
|
|
```
|
|
|
|
### With pip install and virtualenv
|
|
|
|
```
|
|
mkvirtualenv launcher
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
# Create “.mpd.conf” config
|
|
|
|
vim ~/.mpd.conf
|
|
|
|
```
|
|
music_directory "/home/cpi/music"
|
|
playlist_directory "/home/cpi/.mpd/playlists"
|
|
db_file "/home/cpi/.mpd/tag_cache"
|
|
log_file "/home/cpi/.mpd/mpd.log"
|
|
pid_file "/home/cpi/.mpd/pid"
|
|
state_file "/home/cpi/.mpd/state"
|
|
sticker_file "/home/cpi/.mpd/sticker.sql"
|
|
user "cpi"
|
|
bind_to_address "/tmp/mpd.socket"
|
|
|
|
auto_update "yes"
|
|
auto_update_depth "2"
|
|
|
|
input {
|
|
plugin "curl"
|
|
}
|
|
|
|
audio_output {
|
|
type "alsa"
|
|
name "ALSA Device"
|
|
}
|
|
|
|
audio_output {
|
|
type "fifo"
|
|
name "my_fifo"
|
|
path "/tmp/mpd.fifo"
|
|
format "44100:16:2"
|
|
}
|
|
|
|
filesystem_charset "UTF-8"
|
|
# id3v1_encoding "UTF-8"
|
|
|
|
# QOBUZ input plugin
|
|
input {
|
|
enabled "no"
|
|
plugin "qobuz"
|
|
# app_id "ID"
|
|
# app_secret "SECRET"
|
|
# username "USERNAME"
|
|
# password "PASSWORD"
|
|
# format_id "N"
|
|
}
|
|
|
|
# TIDAL input plugin
|
|
input {
|
|
enabled "no"
|
|
plugin "tidal"
|
|
# token "TOKEN"
|
|
# username "USERNAME"
|
|
# password "PASSWORD"
|
|
# audioquality "Q"
|
|
}
|
|
|
|
# Decoder #####################################################################
|
|
#
|
|
|
|
decoder {
|
|
plugin "hybrid_dsd"
|
|
enabled "no"
|
|
# gapless "no"
|
|
}
|
|
```
|
|
|
|
# Create “.gameshell_skin” config
|
|
|
|
vim ~/.gameshell_skin
|
|
|
|
```
|
|
/home/cpi/launcher/skin/DEOT
|
|
```
|
|
|
|
# PageUp and PageDown Keys
|
|
|
|
D-Pad Up/Down
|
|
```
|
|
Main page
|
|
```
|
|
|
|
D-Pad Left/Right
|
|
```
|
|
Settings
|
|
Timezone
|
|
RetroArch Cores Manager
|
|
```
|
|
Shift + Menu & D-Pad Left/Right
|
|
```
|
|
ROM list
|
|
Fav. list
|
|
Music lib. list
|
|
Music play list
|
|
```
|