aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/notes/dcss-on-4k-display.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/content/notes/dcss-on-4k-display.md b/content/notes/dcss-on-4k-display.md
new file mode 100644
index 0000000..d7ab8e2
--- /dev/null
+++ b/content/notes/dcss-on-4k-display.md
@@ -0,0 +1,28 @@
1---
2title: "Make DCSS playable on 4k Display"
3url: dcss-on-4k-display.html
4date: 2023-05-27T19:35:11+02:00
5type: notes
6draft: false
7tags: [dcss]
8---
9
10Dungeon Crawl Stone Soup has a a very small font by default. On a 4k display, it
11is barely readable. This is how I made it playable.
12
13Make a file `~/.crawlrc` with the following content:
14
15```ini
16# Adjust the sizes to your liking.
17
18tile_font_crt_size = 24
19tile_font_stat_size = 24
20tile_font_msg_size = 24
21tile_font_tip_size = 24
22tile_font_lbl_size = 24
23tile_sidebar_pixels = 64
24```
25
26To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively.
27
28All the options are documented in the [Dungeon Crawl Stone Soup Options Guide](https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt) file.