aboutsummaryrefslogtreecommitdiff
path: root/content/notes/dcss-on-4k-display.md
blob: d7ab8e2806484e399f964453eead2a1511904778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
title: "Make DCSS playable on 4k Display"
url: dcss-on-4k-display.html
date: 2023-05-27T19:35:11+02:00
type: notes
draft: false
tags: [dcss]
---

Dungeon Crawl Stone Soup has a a very small font by default. On a 4k display, it
is barely readable. This is how I made it playable.

Make a file `~/.crawlrc` with the following content:

```ini
# Adjust the sizes to your liking.

tile_font_crt_size = 24
tile_font_stat_size = 24
tile_font_msg_size = 24
tile_font_tip_size = 24
tile_font_lbl_size = 24
tile_sidebar_pixels = 64
```

To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively.

All 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.