diff options
| author | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-16 22:46:06 +0200 |
|---|---|---|
| committer | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-16 22:46:11 +0200 |
| commit | 0cb6a5c81271a61e930505f3315b1d67bdf22724 (patch) | |
| tree | 27df39e2004dda656f5e8ae09e9d4e6395d4f903 /content/notes/2023-05-27-dcss-on-4k-displays.md | |
| parent | 89b2019bfa3bd8f1f0ceb7724c492fdf337dd519 (diff) | |
| download | mitjafelicijan.com-0cb6a5c81271a61e930505f3315b1d67bdf22724.tar.gz | |
Renamed all the notes files to include date
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.md | 30 |
1 files changed, 30 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..8dd7095 --- /dev/null +++ b/content/notes/2023-05-27-dcss-on-4k-displays.md | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | --- | ||
| 2 | title: "Make DCSS playable on 4k displays" | ||
| 3 | url: dcss-on-4k-display.html | ||
| 4 | date: 2023-05-27T19:35:11+02:00 | ||
| 5 | type: note | ||
| 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 = 32 | ||
| 19 | tile_font_stat_size = 32 | ||
| 20 | tile_font_msg_size = 32 | ||
| 21 | tile_font_tip_size = 32 | ||
| 22 | tile_font_lbl_size = 32 | ||
| 23 | tile_sidebar_pixels = 64 | ||
| 24 | ``` | ||
| 25 | |||
| 26 | To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively. | ||
| 27 | |||
| 28 | All the possible options are documented in the [Dungeon Crawl Stone Soup Options | ||
| 29 | Guide](https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt) | ||
| 30 | file. | ||
