Skip to content

Commit

Permalink
Apps Item Fix & Games Menu Order
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Aug 3, 2023
1 parent 2c1a9d0 commit 43d3483
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 3 deletions.
6 changes: 3 additions & 3 deletions applications/services/loader/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,10 +328,10 @@ static Loader* loader_alloc() {
}
}

if(!path && strcmp(furi_string_get_cstr(line), LOADER_APPLICATIONS_NAME) == 0) {
label = LOADER_APPLICATIONS_NAME;
if(!path && strcmp(furi_string_get_cstr(line), "Applications") == 0) {
label = "Apps";
icon = &A_Plugins_14;
path = LOADER_APPLICATIONS_NAME;
path = "Applications";
}

if(!path && strcmp(furi_string_get_cstr(line), "Settings") == 0) {
Expand Down
52 changes: 52 additions & 0 deletions assets/resources/.config/cfw_gamesmenu.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
GamesMenuList Version 0
/ext/apps/Games/2048.fap
/ext/apps/Games/2048_improved.fap
/ext/apps/Games/4_in_a_row.fap
/ext/apps/Games/arkanoid.fap
/ext/apps/Games/asteroids.fap
/ext/apps/Games/blackjack.fap
/ext/apps/Games/bomberduck.fap
/ext/apps/Games/chess.fap
/ext/apps/Games/chess_clock.fap
/ext/apps/Games/color_guess.fap
/ext/apps/Games/dice.fap
/ext/apps/Games/dnd_dice_app.fap
/ext/apps/Games/doom.fap
/ext/apps/Games/dvd_bouncer.fap
/ext/apps/Games/etchasketch.fap
/ext/apps/Games/flappybird.fap
/ext/apps/Games/game15.fap
/ext/apps/Games/gameoflife.fap
/ext/apps/Games/heap_defence.fap
/ext/apps/Games/jetpack.fap
/ext/apps/Games/mandelbrotset.fap
/ext/apps/Games/minesweeper.fap
/ext/apps/Games/montyhall.fap
/ext/apps/Games/multi_counter.fap
/ext/apps/Games/nfc_crocodile.fap
/ext/apps/Games/nu_pogodi.fap
/ext/apps/Games/paint.fap
/ext/apps/Games/pong.fap
/ext/apps/Games/race.fap
/ext/apps/Games/reactiontest.fap
/ext/apps/Games/reaction_time.fap
/ext/apps/Games/reversi.fap
/ext/apps/Games/rock_paper_scissors.fap
/ext/apps/Games/roots_of_life.fap
/ext/apps/Games/rubiks_cube_scrambler.fap
/ext/apps/Games/scorched_tanks.fap
/ext/apps/Games/simon_says.fap
/ext/apps/Games/slotmachine.fap
/ext/apps/Games/snake.fap
/ext/apps/Games/snake20.fap
/ext/apps/Games/solitaire.fap
/ext/apps/Games/super_chip.fap
/ext/apps/Games/tama_p1.fap
/ext/apps/Games/tanks.fap
/ext/apps/Games/tetris.fap
/ext/apps/Games/tictactoe.fap
/ext/apps/Games/tic_tac_toe_multi.fap
/ext/apps/Games/trex_runner.fap
/ext/apps/Games/videopoker.fap
/ext/apps/Games/yatzee.fap
/ext/apps/Games/zombiez.fap

0 comments on commit 43d3483

Please sign in to comment.