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