Topic: Adding Gnome-Games to menu
I am going on a flight to New York soon and thought "I need something to keep me busy on the plane. But, no games in #!"
I went into Synaptic and searched for 'gnome-games' and installed with no problems.
Now, you may ask, how to start the games. Well, I did this for about one day by typing in gnect for 'Four In A Row' but couldn't remember some of the weird names.
So, I edited my menu.xml file to help me quickly play my games. If you want games too, follow these directions.
1) Install the games.
in Synaptic search for 'gnome-games' and install, or
in terminator type in 'sudo apt-get install gnome-games'
2) Open your menu.xml file
in Crunchbang menu go to Preferences > Openbox Config > Edit menu.xml
add the code below wherever you want your new 'Games' menu to show up
Enjoy playing games!
Dave.
<menu id="games" label="Games">
<item label="Solitaire">
<action name="Execute">
<execute>
sol
</execute>
</action>
</item>
<item label="Blackjack">
<action name="Execute">
<execute>
blackjack
</execute>
</action>
</item>
<item label="Chess">
<action name="Execute">
<execute>
glchess
</execute>
</action>
</item>
<item label="Five Or More">
<action name="Execute">
<execute>
glines
</execute>
</action>
</item>
<item label="Four In A Row">
<action name="Execute">
<execute>
gnect
</execute>
</action>
</item>
<item label="Snake">
<action name="Execute">
<execute>
gnibbles
</execute>
</action>
</item>
<item label="Robots">
<action name="Execute">
<execute>
gnobots2
</execute>
</action>
</item>
<item label="Sudoku">
<action name="Execute">
<execute>
gnome-sudoku
</execute>
</action>
</item>
<item label="Tetris">
<action name="Execute">
<execute>
gnometris
</execute>
</action>
</item>
<item label="Minesweeper">
<action name="Execute">
<execute>
gnomine
</execute>
</action>
</item>
<item label="Tiles">
<action name="Execute">
<execute>
gnotravex
</execute>
</action>
</item>
<item label="Klotski">
<action name="Execute">
<execute>
gnotski
</execute>
</action>
</item>
<item label="Poker">
<action name="Execute">
<execute>
gtali
</execute>
</action>
</item>
<item label="Othello">
<action name="Execute">
<execute>
iagno
</execute>
</action>
</item>
<item label="Mahjongg">
<action name="Execute">
<execute>
mahjongg
</execute>
</action>
</item>
<item label="Balls">
<action name="Execute">
<execute>
same-gnome
</execute>
</action>
</item>
</menu>Edit by anonymous: I made the thread title more clear