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