Updated all default OPKs (better icons, updated descriptions...) and default GMenu2X theme "DrUm3x3" with 3x3 grid instead of 2x2 + extra theme "DrUm3x4"
Added Libretro OPK for GMenu2X users in "Games" section
@ -19,7 +19,7 @@ list.includeMissingItems = true
|
||||
###############################################################################
|
||||
# Extensions are comma separated without spaces
|
||||
###############################################################################
|
||||
list.extensions = zip,ZIP,sms,SMS,bin,BIN
|
||||
list.extensions = zip,ZIP,sms,SMS,bin,BIN,sg,SG
|
||||
|
||||
###############################################################################
|
||||
# If a menu.xml file exists, it will display the menu alphabetically. To
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
|
||||
SELF="$(basename ${0})"
|
||||
SYSTEM_BRIGHTNESS="/sys/class/backlight/backlight/brightness"
|
||||
DEFAULT_BRIGHTNESS_VALUE=100
|
||||
DEFAULT_BRIGHTNESS_VALUE=50
|
||||
BRIGHTNESS_STEP=10
|
||||
NOTIF_DURATION=2
|
||||
|
||||
|
||||
@ -0,0 +1 @@
|
||||
This is the folder where you can put all your roms and games for Libretro if you use RetroFE frontend (for GMenu2X users, you can put them wherever you want)
|
||||
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 9.2 KiB |
@ -1,3 +1,5 @@
|
||||
skin="DrUm3x3"
|
||||
wallpaper="/usr/share/gmenu2x/skins/240x240/Default/wallpapers/bg-mame.png"
|
||||
videoBpp=16
|
||||
backlightTimeout=0
|
||||
opkPlatforms="funkey-s"
|
||||
|
||||
@ -3,7 +3,7 @@ messageBoxBorder=#505050ff
|
||||
topBarBg=#ffffff80
|
||||
selectionBg=#ffffff80
|
||||
messageBoxBg=#00000080
|
||||
messageBoxSelection=#fffffff80
|
||||
messageBoxSelection=#ffffff80
|
||||
bottomBarBg=#ffffff80
|
||||
topBarHeight=50
|
||||
bottomBarHeight=21
|
||||
|
||||
|
After Width: | Height: | Size: 107 KiB |
@ -53,6 +53,9 @@ do_postinst()
|
||||
# Fix PCE opk name if necessary
|
||||
#mv /mnt/Emulators/pce_mednaefn_funkey-s.opk /mnt/Emulators/pce_mednafen_funkey-s.opk 1>/dev/null 2>&1
|
||||
|
||||
# Remove separate GB and GBC OPKs (now using one single GB/GBC instead)
|
||||
rm /mnt/Emulators/gb_gnuboy_funkey-s.opk /mnt/Emulators/gbc_gnuboy_funkey-s.opk
|
||||
|
||||
# Unmount Rootfs
|
||||
umount ${root_mount}
|
||||
if [ $? -ne 0 ]; then
|
||||
|
||||
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=NES
|
||||
Comment=FC/NES Emulator
|
||||
Comment=Nintendo Entertainment System emulator
|
||||
Icon=nes
|
||||
Exec=/usr/games/launchers/nes_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/NES
|
||||
SelectorFilter=nes,NES,fds,FDS,zip,ZIP
|
||||
|
||||
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=PS1
|
||||
Comment=PS1 Emulator
|
||||
Name=PlayStation
|
||||
Comment=PlayStation emulator
|
||||
Icon=ps1
|
||||
Exec=/usr/games/launchers/psone_launch_pcsx.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/PS1
|
||||
SelectorFilter=bin,BIN,cue,CUE,pbp,PBP
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 444 B |
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=SNES
|
||||
Comment=SNES Emulator
|
||||
Name=Super NES
|
||||
Comment=Super NES emulator
|
||||
Icon=snes
|
||||
Exec=/usr/games/launchers/snes_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/SNES
|
||||
SelectorFilter=sfc,SFC,smc,SMC,zip,ZIP
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
@ -27,8 +27,7 @@ GNUBOY_CONF_ENV += SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config"
|
||||
|
||||
define GNUBOY_CREATE_OPK
|
||||
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/local/share/OPKs/Emulators
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(GNUBOY_PKGDIR)/opk/gb $(TARGET_DIR)/usr/local/share/OPKs/Emulators/gb_gnuboy_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(GNUBOY_PKGDIR)/opk/gbc $(TARGET_DIR)/usr/local/share/OPKs/Emulators/gbc_gnuboy_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(GNUBOY_PKGDIR)/opk/gb_gbc $(TARGET_DIR)/usr/local/share/OPKs/Emulators/gb_gbc_gnuboy_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
endef
|
||||
GNUBOY_POST_INSTALL_TARGET_HOOKS += GNUBOY_CREATE_OPK
|
||||
|
||||
|
||||
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=GameBoy
|
||||
Comment=Game Boy Emulator
|
||||
Icon=gb
|
||||
Exec=/usr/games/launchers/gb_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
SelectorDir=/mnt/Game Boy
|
||||
SelectorFilter=gb,GB
|
||||
|
Before Width: | Height: | Size: 700 B |
8
FunKey/package/gnuboy/opk/gb_gbc/gb_gbc.funkey-s.desktop
Normal file
@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Name=GB/GBC
|
||||
Comment=Game Boy/Game Boy Color emulator
|
||||
Icon=gb_gbc
|
||||
Exec=/usr/games/launchers/gb_launch.sh %f
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/Game Boy
|
||||
SelectorFilter=gb,GB,gbc,GBC
|
||||
BIN
FunKey/package/gnuboy/opk/gb_gbc/gb_gbc.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=GameBoy Color
|
||||
Comment=Game Boy Color Emulator
|
||||
Icon=gbc
|
||||
Exec=/usr/games/launchers/gb_launch.sh %f
|
||||
Terminal=false
|
||||
X-Od-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
SelectorDir=/mnt/Game Boy Color
|
||||
SelectorFilter=gbc,GBC
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=GameBoy Advance
|
||||
Comment=Game Boy Advance Emulator
|
||||
Name=GBA
|
||||
Comment=Game Boy Advance emulator
|
||||
Icon=gba
|
||||
Exec=/usr/games/launchers/gba_launch_gpsp.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/Game Boy Advance
|
||||
SelectorFilter=gba,GBA,zip,ZIP
|
||||
|
||||
|
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 1.6 KiB |
@ -31,7 +31,6 @@ MEDNAFEN_CONF_ENV += SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config"
|
||||
|
||||
define MEDNAFEN_CREATE_OPK
|
||||
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/local/share/OPKs/Emulators
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(MEDNAFEN_PKGDIR)/opk/gamegear $(TARGET_DIR)/usr/local/share/OPKs/Emulators/gamegear_mednafen_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(MEDNAFEN_PKGDIR)/opk/lynx $(TARGET_DIR)/usr/local/share/OPKs/Emulators/lynx_mednafen_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(MEDNAFEN_PKGDIR)/opk/ngp $(TARGET_DIR)/usr/local/share/OPKs/Emulators/ngp_mednafen_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(MEDNAFEN_PKGDIR)/opk/pce $(TARGET_DIR)/usr/local/share/OPKs/Emulators/pce_mednafen_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
|
||||
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Game Gear
|
||||
Comment=Game Gear Emulator
|
||||
Icon=gamegear
|
||||
Exec=/usr/games/launchers/gamegear_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
SelectorDir=/mnt/Game Gear
|
||||
SelectorFilter=zip,ZIP,gg,GG
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Lynx
|
||||
Comment=Atari Lynx Emulator
|
||||
Comment=Atari Lynx emulator
|
||||
Icon=lynx
|
||||
Exec=/usr/games/launchers/lynx_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/Atari lynx
|
||||
SelectorFilter=zip,ZIP,lnx,LNX
|
||||
|
||||
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Neo Geo
|
||||
Comment=Neo Geo Pocket Emulator
|
||||
Name=Neo-Geo
|
||||
Comment=Neo-Geo Pocket emulator
|
||||
Icon=ngp
|
||||
Exec=/usr/games/launchers/ngp_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/Neo Geo Pocket
|
||||
SelectorFilter=zip,ZIP,ngp,NGP
|
||||
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 1.6 KiB |
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=PC Engine
|
||||
Comment=PCE-TurboGrafx Emulator
|
||||
Name=PC-Engine
|
||||
Comment=PC-Engine CD-ROM emulator
|
||||
Icon=pce
|
||||
Exec=/usr/games/launchers/pce_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/PCE-TurboGrafx
|
||||
SelectorFilter=zip,ZIP,pce,PCE,sgx,SGX,cue,CUE
|
||||
|
||||
|
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 448 B |
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=WonderSwan
|
||||
Comment=WonderSwan/WonderSwan Color Emulator
|
||||
Comment=WonderSwan/WonderSwan Color emulator
|
||||
Icon=wonderswan
|
||||
Exec=/usr/games/launchers/wonderswan_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/WonderSwan
|
||||
SelectorFilter=zip,ZIP,wsc,WSC,ws,WS
|
||||
|
||||
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 1.8 KiB |
@ -1,12 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Mega Drive
|
||||
Comment=Sega Genesis/MegaDrive Emulator
|
||||
Comment=SG/SMS/GG/MD/MCD/32X emulator
|
||||
Icon=megadrive
|
||||
Exec=/usr/games/launchers/megadrive_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
Categories=emulators
|
||||
SelectorDir=/mnt/Sega Genesis
|
||||
SelectorFilter=zip,ZIP,md,MD,bin,BIN,32x,32X,cue,CUE,cso,CSO,chd,CHD,smd,SMD
|
||||
SelectorFilter=zip,ZIP,md,MD,bin,BIN,32x,32X,cue,CUE,cso,CSO,chd,CHD,smd,SMD,gg,GG,sg,SG
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.7 KiB |
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Master System
|
||||
Comment=Sega Master System Emulator
|
||||
Icon=sms
|
||||
Exec=/usr/games/launchers/sms_launch.sh %f
|
||||
Terminal=false
|
||||
X-OD-NeedsDownscaling=true
|
||||
Categories=emulators;
|
||||
selectorbrowser=true
|
||||
SelectorDir=/mnt/Sega Master System
|
||||
SelectorFilter=zip,ZIP,sms,SMS,bin,BIN
|
||||
|
Before Width: | Height: | Size: 1007 B |
@ -47,7 +47,6 @@ endef
|
||||
define PICODRIVE_CREATE_OPK
|
||||
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/local/share/OPKs/Emulators
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(PICODRIVE_PKGDIR)/opk/megadrive $(TARGET_DIR)/usr/local/share/OPKs/Emulators/megadrive_picodrive_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
$(HOST_DIR)/usr/bin/mksquashfs $(PICODRIVE_PKGDIR)/opk/sms $(TARGET_DIR)/usr/local/share/OPKs/Emulators/sms_picodrive_funkey-s.opk -all-root -noappend -no-exports -no-xattrs
|
||||
endef
|
||||
PICODRIVE_POST_INSTALL_TARGET_HOOKS += PICODRIVE_CREATE_OPK
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
|
||||
SELF="$(basename ${0})"
|
||||
SYSTEM_BRIGHTNESS="/sys/class/backlight/backlight/brightness"
|
||||
DEFAULT_BRIGHTNESS_VALUE=100
|
||||
DEFAULT_BRIGHTNESS_VALUE=50
|
||||
BRIGHTNESS_STEP=10
|
||||
NOTIF_DURATION=2
|
||||
|
||||
|
||||