mirror of
https://github.com/libretro/hatari.git
synced 2024-11-30 19:50:27 +00:00
14 lines
579 B
Plaintext
14 lines
579 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# example setup for Hatari UI
|
||
|
$0.py --top "about,|,run,pause,|,reset,debug,|,quit" #--embed
|
||
|
return
|
||
|
# test setup to run Hatari UI with all available controls
|
||
|
$0.py --embed \
|
||
|
--top "about,|,run,pause,|,reset,debug,|,quit" \
|
||
|
--left "run,pause,reset,machine,about" \
|
||
|
--panel "Keys,F1=59,F2=60,F3=61,F4=62,F5=63,F6=64,F7=65,F8=66,F9=67,F10=68,>,Macro=Test,Undo=97,Help=98,Enter=114,>,close" \
|
||
|
--panel "Misc,fast,|,full,|,sound,>,shot,>,close" \
|
||
|
--bottom "fast,full,Misc,Keys,input,devices,display,debug,trace" \
|
||
|
--right "fast,full,Misc,Keys,input,devices,display,Help=98"
|