Add local and remote ip address options to Accessories menu. Fixed a bug that allowed wine32 games to show up on the Raspberry Pi.
This commit is contained in:
@@ -916,8 +916,11 @@ if __name__ == "__main__":
|
||||
menu.add_item("Arcade", "Villains From Beyond", "GAME='Villains From Beyond' startx")
|
||||
menu.add_item("Arcade", "Wicked Quest", "GAME='Wicked Quest' startx")
|
||||
menu.add_item("Arcade", "Zombowl", "GAME='Zombowl' startx")
|
||||
menu.add_item("Arcade", "Kitchen's Sink", "GAME=\"Kitchen's Sink\" startx")
|
||||
menu.add_item("Arcade", "Swamp", "GAME='Swamp' startx")
|
||||
|
||||
# Add Kitchen's Sink and Swamp only on x86_64
|
||||
if platform.machine() == "x86_64":
|
||||
menu.add_item("Arcade", "Kitchen's Sink", "GAME=\"Kitchen's Sink\" startx")
|
||||
menu.add_item("Arcade", "Swamp", "GAME='Swamp' startx")
|
||||
|
||||
# Add board and card games section
|
||||
menu.add_section("Board and Card Games")
|
||||
@@ -1009,6 +1012,8 @@ if __name__ == "__main__":
|
||||
# Add accessories section
|
||||
menu.add_section("Accessories")
|
||||
menu.add_item("Accessories", "Music Player", "/usr/local/bin/music_player.py")
|
||||
menu.add_item("Accessories", "Local IP Address", "/usr/local/bin/ip_info.py local")
|
||||
menu.add_item("Accessories", "Remote IP Address", "/usr/local/bin/ip_info.py remote")
|
||||
menu.add_item("Accessories", "Web Browser", "GAME=Brave startx")
|
||||
|
||||
# Add system section
|
||||
|
||||
Reference in New Issue
Block a user