diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-05-27 19:42:48 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-05-27 19:42:48 +0200 |
| commit | fb520e3619524c3699e80a4697c728edaa3354a7 (patch) | |
| tree | 05068381bf63e2e9a7ad2bc1e8253e18fe581233 /content/notes | |
| parent | 10c15ce883ef07cc0ede9862b17520039d63e701 (diff) | |
| download | mitjafelicijan.com-fb520e3619524c3699e80a4697c728edaa3354a7.tar.gz | |
Note: DCSS 4k
Diffstat (limited to 'content/notes')
| -rw-r--r-- | content/notes/dcss-on-4k-display.md | 28 |
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 | --- | ||
| 2 | title: "Make DCSS playable on 4k Display" | ||
| 3 | url: dcss-on-4k-display.html | ||
| 4 | date: 2023-05-27T19:35:11+02:00 | ||
| 5 | type: notes | ||
| 6 | draft: false | ||
| 7 | tags: [dcss] | ||
| 8 | --- | ||
| 9 | |||
| 10 | Dungeon Crawl Stone Soup has a a very small font by default. On a 4k display, it | ||
| 11 | is barely readable. This is how I made it playable. | ||
| 12 | |||
| 13 | Make a file `~/.crawlrc` with the following content: | ||
| 14 | |||
| 15 | ```ini | ||
| 16 | # Adjust the sizes to your liking. | ||
| 17 | |||
| 18 | tile_font_crt_size = 24 | ||
| 19 | tile_font_stat_size = 24 | ||
| 20 | tile_font_msg_size = 24 | ||
| 21 | tile_font_tip_size = 24 | ||
| 22 | tile_font_lbl_size = 24 | ||
| 23 | tile_sidebar_pixels = 64 | ||
| 24 | ``` | ||
| 25 | |||
| 26 | To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively. | ||
| 27 | |||
| 28 | 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. | ||
