Skip to content

Commit 7f73a13

Browse files
add sample config file
1 parent 3a976c9 commit 7f73a13

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

dist/config.lua

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
-- Configuration file for x48ng
2+
3+
-- `config_dir` is relative to $HOME or absolute
4+
config_dir = ".config/x48ng"
5+
6+
-- Pathes are either relative to `config_dir` or absolute
7+
rom = "rom"
8+
ram = "ram"
9+
state = "state"
10+
port1 = "port1"
11+
port2 = "port2"
12+
13+
pseudo_terminal = false
14+
15+
serial = false
16+
17+
serial_line = "/dev/ttyS0"
18+
19+
verbose = false
20+
21+
debugger = false
22+
23+
throttle = false
24+
25+
26+
--------------------
27+
-- User Interface --
28+
--------------------
29+
30+
frontend = "tui" -- possible values: "x11", "sdl", "tui"
31+
hide_chrome = false
32+
33+
fullscreen = false
34+
35+
36+
netbook = false
37+
38+
39+
mono = false
40+
41+
gray = false
42+
43+
44+
x11_visual = "default"
45+
46+
font_small = "-*-fixed-bold-r-normal-*-14-*-*-*-*-*-iso8859-1"
47+
font_medium = "-*-fixed-bold-r-normal-*-15-*-*-*-*-*-iso8859-1"
48+
font_large = "-*-fixed-medium-r-normal-*-20-*-*-*-*-*-iso8859-1"
49+
font_devices = "-*-fixed-medium-r-normal-*-12-*-*-*-*-*-iso8859-1"

0 commit comments

Comments
 (0)