├── .gitignore ├── GenerateGamesList.py ├── Images ├── menu_carbon.png ├── menu_eudora.png ├── menu_simple-dark_theme.PNG └── moonlight_gameslist.png ├── Install.sh ├── LICENSE ├── README.md ├── Scripts ├── Install_Scripts.sh ├── Install_moonlight.sh ├── Install_moonlight_menu.sh ├── Install_themes.sh ├── Pair_moonlight.sh ├── Refresh.sh └── menu_config.txt ├── sampleOutput.txt └── themes ├── carbon-centered └── moonlight │ ├── art │ ├── controller.svg │ └── system.svg │ └── theme.xml ├── carbon-nometa └── moonlight │ ├── art │ ├── controller.svg │ └── system.svg │ └── theme.xml ├── carbon └── moonlight │ ├── art │ ├── controller.svg │ └── moonlight.svg │ └── theme.xml ├── clean-look └── moonlight │ ├── art │ ├── moonlight.svg │ └── moonlight_art_blur.png │ └── theme.xml ├── eudora-updated └── moonlight │ ├── controller.svg │ ├── logo.svg │ └── theme.xml ├── flat-dark └── moonlight │ ├── system.svg │ └── theme.xml ├── flat └── moonlight │ ├── system.svg │ └── theme.xml ├── minimal ├── README.md ├── _extras │ ├── backgrounds │ │ ├── bg1.png │ │ ├── bg2.png │ │ └── bg3.png │ └── splashscreens │ │ ├── lilbud_minimal.png │ │ └── lilbud_minimal_light.png ├── art │ ├── 3do.svg │ ├── ags.svg │ ├── amiga.svg │ ├── amstradcpc.svg │ ├── apple2.svg │ ├── arcade.svg │ ├── astrocade.svg │ ├── atari2600.svg │ ├── atari5200.svg │ ├── atari7800.svg │ ├── atari800.svg │ ├── atarijaguar.svg │ ├── atarijaguarcd.svg │ ├── atarilynx.svg │ ├── atarist.svg │ ├── auto-allgames.svg │ ├── auto-favorites.svg │ ├── auto-lastplayed.svg │ ├── bbcmicro.svg │ ├── c64.svg │ ├── channelf.svg │ ├── coco.svg │ ├── colecovision.svg │ ├── custom-collections.svg │ ├── daphne.svg │ ├── desktop.svg │ ├── dragon32.svg │ ├── dreamcast.svg │ ├── fba.svg │ ├── fds.svg │ ├── gameandwatch.svg │ ├── gamegear.svg │ ├── gb.svg │ ├── gba.svg │ ├── gbc.svg │ ├── gc.svg │ ├── genesis.svg │ ├── intellivision.svg │ ├── kodi.svg │ ├── love.svg │ ├── macintosh.svg │ ├── mame-advmame.svg │ ├── mame-libretro.svg │ ├── mame-mame4all.svg │ ├── mame.svg │ ├── mastersystem.svg │ ├── megadrive.svg │ ├── mess.svg │ ├── moonlight.svg │ ├── msx.svg │ ├── n64.svg │ ├── nds.svg │ ├── neogeo.svg │ ├── neogeocd.svg │ ├── nes.svg │ ├── ngpc.svg │ ├── odyssey2.svg │ ├── oric.svg │ ├── pc.svg │ ├── pce-cd.svg │ ├── pcengine.svg │ ├── ports.svg │ ├── ps2.svg │ ├── psp.svg │ ├── psx.svg │ ├── rating_filled.svg │ ├── rating_unfilled.svg │ ├── residualvm.svg │ ├── retropie.svg │ ├── samcoupe.svg │ ├── saturn.svg │ ├── scummvm.svg │ ├── sega32x.svg │ ├── segacd.svg │ ├── sg-1000.svg │ ├── snes.svg │ ├── steam.svg │ ├── stratagus.svg │ ├── supergrafx.svg │ ├── tg-cd.svg │ ├── tg16.svg │ ├── ti99.svg │ ├── trs-80.svg │ ├── vectrex.svg │ ├── videopac.svg │ ├── virtualboy.svg │ ├── wii.svg │ ├── wonderswan.svg │ ├── wonderswancolor.svg │ ├── zmachine.svg │ └── zxspectrum.svg ├── assets │ ├── SST.ttf │ ├── bg.png │ ├── box.png │ ├── gamelist.png │ ├── layouts │ │ └── square_layout.xml │ ├── no_boxart.png │ ├── noto.ttf │ ├── rating_filled.svg │ └── rating_unfilled.svg ├── guide.txt ├── layouts │ ├── V1.xml │ └── V2.xml └── theme.xml ├── simple-dark └── moonlight │ ├── art │ ├── moonlight.svg │ └── moonlight_art_blur.png │ └── theme.xml └── simple └── moonlight ├── art ├── moonlight.svg └── moonlight_art_blur.png └── theme.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/.gitignore -------------------------------------------------------------------------------- /GenerateGamesList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/GenerateGamesList.py -------------------------------------------------------------------------------- /Images/menu_carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Images/menu_carbon.png -------------------------------------------------------------------------------- /Images/menu_eudora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Images/menu_eudora.png -------------------------------------------------------------------------------- /Images/menu_simple-dark_theme.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Images/menu_simple-dark_theme.PNG -------------------------------------------------------------------------------- /Images/moonlight_gameslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Images/moonlight_gameslist.png -------------------------------------------------------------------------------- /Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Install.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Install_Scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/Install_Scripts.sh -------------------------------------------------------------------------------- /Scripts/Install_moonlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/Install_moonlight.sh -------------------------------------------------------------------------------- /Scripts/Install_moonlight_menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/Install_moonlight_menu.sh -------------------------------------------------------------------------------- /Scripts/Install_themes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/Install_themes.sh -------------------------------------------------------------------------------- /Scripts/Pair_moonlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/Pair_moonlight.sh -------------------------------------------------------------------------------- /Scripts/Refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/Refresh.sh -------------------------------------------------------------------------------- /Scripts/menu_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/Scripts/menu_config.txt -------------------------------------------------------------------------------- /sampleOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/sampleOutput.txt -------------------------------------------------------------------------------- /themes/carbon-centered/moonlight/art/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon-centered/moonlight/art/controller.svg -------------------------------------------------------------------------------- /themes/carbon-centered/moonlight/art/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon-centered/moonlight/art/system.svg -------------------------------------------------------------------------------- /themes/carbon-centered/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon-centered/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/carbon-nometa/moonlight/art/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon-nometa/moonlight/art/controller.svg -------------------------------------------------------------------------------- /themes/carbon-nometa/moonlight/art/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon-nometa/moonlight/art/system.svg -------------------------------------------------------------------------------- /themes/carbon-nometa/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon-nometa/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/carbon/moonlight/art/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon/moonlight/art/controller.svg -------------------------------------------------------------------------------- /themes/carbon/moonlight/art/moonlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon/moonlight/art/moonlight.svg -------------------------------------------------------------------------------- /themes/carbon/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/carbon/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/clean-look/moonlight/art/moonlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/clean-look/moonlight/art/moonlight.svg -------------------------------------------------------------------------------- /themes/clean-look/moonlight/art/moonlight_art_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/clean-look/moonlight/art/moonlight_art_blur.png -------------------------------------------------------------------------------- /themes/clean-look/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/clean-look/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/eudora-updated/moonlight/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/eudora-updated/moonlight/controller.svg -------------------------------------------------------------------------------- /themes/eudora-updated/moonlight/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/eudora-updated/moonlight/logo.svg -------------------------------------------------------------------------------- /themes/eudora-updated/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/eudora-updated/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/flat-dark/moonlight/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/flat-dark/moonlight/system.svg -------------------------------------------------------------------------------- /themes/flat-dark/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/flat-dark/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/flat/moonlight/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/flat/moonlight/system.svg -------------------------------------------------------------------------------- /themes/flat/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/flat/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/minimal/README.md: -------------------------------------------------------------------------------- 1 | # es-theme-minimal 2 | -------------------------------------------------------------------------------- /themes/minimal/_extras/backgrounds/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/_extras/backgrounds/bg1.png -------------------------------------------------------------------------------- /themes/minimal/_extras/backgrounds/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/_extras/backgrounds/bg2.png -------------------------------------------------------------------------------- /themes/minimal/_extras/backgrounds/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/_extras/backgrounds/bg3.png -------------------------------------------------------------------------------- /themes/minimal/_extras/splashscreens/lilbud_minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/_extras/splashscreens/lilbud_minimal.png -------------------------------------------------------------------------------- /themes/minimal/_extras/splashscreens/lilbud_minimal_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/_extras/splashscreens/lilbud_minimal_light.png -------------------------------------------------------------------------------- /themes/minimal/art/3do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/3do.svg -------------------------------------------------------------------------------- /themes/minimal/art/ags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/ags.svg -------------------------------------------------------------------------------- /themes/minimal/art/amiga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/amiga.svg -------------------------------------------------------------------------------- /themes/minimal/art/amstradcpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/amstradcpc.svg -------------------------------------------------------------------------------- /themes/minimal/art/apple2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/apple2.svg -------------------------------------------------------------------------------- /themes/minimal/art/arcade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/arcade.svg -------------------------------------------------------------------------------- /themes/minimal/art/astrocade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/astrocade.svg -------------------------------------------------------------------------------- /themes/minimal/art/atari2600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atari2600.svg -------------------------------------------------------------------------------- /themes/minimal/art/atari5200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atari5200.svg -------------------------------------------------------------------------------- /themes/minimal/art/atari7800.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atari7800.svg -------------------------------------------------------------------------------- /themes/minimal/art/atari800.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atari800.svg -------------------------------------------------------------------------------- /themes/minimal/art/atarijaguar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atarijaguar.svg -------------------------------------------------------------------------------- /themes/minimal/art/atarijaguarcd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atarijaguarcd.svg -------------------------------------------------------------------------------- /themes/minimal/art/atarilynx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atarilynx.svg -------------------------------------------------------------------------------- /themes/minimal/art/atarist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/atarist.svg -------------------------------------------------------------------------------- /themes/minimal/art/auto-allgames.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/auto-allgames.svg -------------------------------------------------------------------------------- /themes/minimal/art/auto-favorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/auto-favorites.svg -------------------------------------------------------------------------------- /themes/minimal/art/auto-lastplayed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/auto-lastplayed.svg -------------------------------------------------------------------------------- /themes/minimal/art/bbcmicro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/bbcmicro.svg -------------------------------------------------------------------------------- /themes/minimal/art/c64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/c64.svg -------------------------------------------------------------------------------- /themes/minimal/art/channelf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/channelf.svg -------------------------------------------------------------------------------- /themes/minimal/art/coco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/coco.svg -------------------------------------------------------------------------------- /themes/minimal/art/colecovision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/colecovision.svg -------------------------------------------------------------------------------- /themes/minimal/art/custom-collections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/custom-collections.svg -------------------------------------------------------------------------------- /themes/minimal/art/daphne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/daphne.svg -------------------------------------------------------------------------------- /themes/minimal/art/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/desktop.svg -------------------------------------------------------------------------------- /themes/minimal/art/dragon32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/dragon32.svg -------------------------------------------------------------------------------- /themes/minimal/art/dreamcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/dreamcast.svg -------------------------------------------------------------------------------- /themes/minimal/art/fba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/fba.svg -------------------------------------------------------------------------------- /themes/minimal/art/fds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/fds.svg -------------------------------------------------------------------------------- /themes/minimal/art/gameandwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/gameandwatch.svg -------------------------------------------------------------------------------- /themes/minimal/art/gamegear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/gamegear.svg -------------------------------------------------------------------------------- /themes/minimal/art/gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/gb.svg -------------------------------------------------------------------------------- /themes/minimal/art/gba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/gba.svg -------------------------------------------------------------------------------- /themes/minimal/art/gbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/gbc.svg -------------------------------------------------------------------------------- /themes/minimal/art/gc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/gc.svg -------------------------------------------------------------------------------- /themes/minimal/art/genesis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/genesis.svg -------------------------------------------------------------------------------- /themes/minimal/art/intellivision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/intellivision.svg -------------------------------------------------------------------------------- /themes/minimal/art/kodi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/kodi.svg -------------------------------------------------------------------------------- /themes/minimal/art/love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/love.svg -------------------------------------------------------------------------------- /themes/minimal/art/macintosh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/macintosh.svg -------------------------------------------------------------------------------- /themes/minimal/art/mame-advmame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/mame-advmame.svg -------------------------------------------------------------------------------- /themes/minimal/art/mame-libretro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/mame-libretro.svg -------------------------------------------------------------------------------- /themes/minimal/art/mame-mame4all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/mame-mame4all.svg -------------------------------------------------------------------------------- /themes/minimal/art/mame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/mame.svg -------------------------------------------------------------------------------- /themes/minimal/art/mastersystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/mastersystem.svg -------------------------------------------------------------------------------- /themes/minimal/art/megadrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/megadrive.svg -------------------------------------------------------------------------------- /themes/minimal/art/mess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/mess.svg -------------------------------------------------------------------------------- /themes/minimal/art/moonlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/moonlight.svg -------------------------------------------------------------------------------- /themes/minimal/art/msx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/msx.svg -------------------------------------------------------------------------------- /themes/minimal/art/n64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/n64.svg -------------------------------------------------------------------------------- /themes/minimal/art/nds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/nds.svg -------------------------------------------------------------------------------- /themes/minimal/art/neogeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/neogeo.svg -------------------------------------------------------------------------------- /themes/minimal/art/neogeocd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/neogeocd.svg -------------------------------------------------------------------------------- /themes/minimal/art/nes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/nes.svg -------------------------------------------------------------------------------- /themes/minimal/art/ngpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/ngpc.svg -------------------------------------------------------------------------------- /themes/minimal/art/odyssey2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/odyssey2.svg -------------------------------------------------------------------------------- /themes/minimal/art/oric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/oric.svg -------------------------------------------------------------------------------- /themes/minimal/art/pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/pc.svg -------------------------------------------------------------------------------- /themes/minimal/art/pce-cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/pce-cd.svg -------------------------------------------------------------------------------- /themes/minimal/art/pcengine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/pcengine.svg -------------------------------------------------------------------------------- /themes/minimal/art/ports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/ports.svg -------------------------------------------------------------------------------- /themes/minimal/art/ps2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/ps2.svg -------------------------------------------------------------------------------- /themes/minimal/art/psp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/psp.svg -------------------------------------------------------------------------------- /themes/minimal/art/psx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/psx.svg -------------------------------------------------------------------------------- /themes/minimal/art/rating_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/rating_filled.svg -------------------------------------------------------------------------------- /themes/minimal/art/rating_unfilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/rating_unfilled.svg -------------------------------------------------------------------------------- /themes/minimal/art/residualvm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/residualvm.svg -------------------------------------------------------------------------------- /themes/minimal/art/retropie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/retropie.svg -------------------------------------------------------------------------------- /themes/minimal/art/samcoupe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/samcoupe.svg -------------------------------------------------------------------------------- /themes/minimal/art/saturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/saturn.svg -------------------------------------------------------------------------------- /themes/minimal/art/scummvm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/scummvm.svg -------------------------------------------------------------------------------- /themes/minimal/art/sega32x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/sega32x.svg -------------------------------------------------------------------------------- /themes/minimal/art/segacd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/segacd.svg -------------------------------------------------------------------------------- /themes/minimal/art/sg-1000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/sg-1000.svg -------------------------------------------------------------------------------- /themes/minimal/art/snes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/snes.svg -------------------------------------------------------------------------------- /themes/minimal/art/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/steam.svg -------------------------------------------------------------------------------- /themes/minimal/art/stratagus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/stratagus.svg -------------------------------------------------------------------------------- /themes/minimal/art/supergrafx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/supergrafx.svg -------------------------------------------------------------------------------- /themes/minimal/art/tg-cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/tg-cd.svg -------------------------------------------------------------------------------- /themes/minimal/art/tg16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/tg16.svg -------------------------------------------------------------------------------- /themes/minimal/art/ti99.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/ti99.svg -------------------------------------------------------------------------------- /themes/minimal/art/trs-80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/trs-80.svg -------------------------------------------------------------------------------- /themes/minimal/art/vectrex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/vectrex.svg -------------------------------------------------------------------------------- /themes/minimal/art/videopac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/videopac.svg -------------------------------------------------------------------------------- /themes/minimal/art/virtualboy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/virtualboy.svg -------------------------------------------------------------------------------- /themes/minimal/art/wii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/wii.svg -------------------------------------------------------------------------------- /themes/minimal/art/wonderswan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/wonderswan.svg -------------------------------------------------------------------------------- /themes/minimal/art/wonderswancolor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/wonderswancolor.svg -------------------------------------------------------------------------------- /themes/minimal/art/zmachine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/zmachine.svg -------------------------------------------------------------------------------- /themes/minimal/art/zxspectrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/art/zxspectrum.svg -------------------------------------------------------------------------------- /themes/minimal/assets/SST.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/SST.ttf -------------------------------------------------------------------------------- /themes/minimal/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/bg.png -------------------------------------------------------------------------------- /themes/minimal/assets/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/box.png -------------------------------------------------------------------------------- /themes/minimal/assets/gamelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/gamelist.png -------------------------------------------------------------------------------- /themes/minimal/assets/layouts/square_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/layouts/square_layout.xml -------------------------------------------------------------------------------- /themes/minimal/assets/no_boxart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/no_boxart.png -------------------------------------------------------------------------------- /themes/minimal/assets/noto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/noto.ttf -------------------------------------------------------------------------------- /themes/minimal/assets/rating_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/rating_filled.svg -------------------------------------------------------------------------------- /themes/minimal/assets/rating_unfilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/assets/rating_unfilled.svg -------------------------------------------------------------------------------- /themes/minimal/guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/guide.txt -------------------------------------------------------------------------------- /themes/minimal/layouts/V1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/layouts/V1.xml -------------------------------------------------------------------------------- /themes/minimal/layouts/V2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/layouts/V2.xml -------------------------------------------------------------------------------- /themes/minimal/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/minimal/theme.xml -------------------------------------------------------------------------------- /themes/simple-dark/moonlight/art/moonlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/simple-dark/moonlight/art/moonlight.svg -------------------------------------------------------------------------------- /themes/simple-dark/moonlight/art/moonlight_art_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/simple-dark/moonlight/art/moonlight_art_blur.png -------------------------------------------------------------------------------- /themes/simple-dark/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/simple-dark/moonlight/theme.xml -------------------------------------------------------------------------------- /themes/simple/moonlight/art/moonlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/simple/moonlight/art/moonlight.svg -------------------------------------------------------------------------------- /themes/simple/moonlight/art/moonlight_art_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/simple/moonlight/art/moonlight_art_blur.png -------------------------------------------------------------------------------- /themes/simple/moonlight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelghill/retromoonlight/HEAD/themes/simple/moonlight/theme.xml --------------------------------------------------------------------------------