From 4abcce013c9ee3053badf2abda77190233066676 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Fri, 23 Feb 2024 10:35:22 +0100 Subject: Testing thoughts page --- _posts/notes/2023-05-27-dcss-on-4k-displays.md | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 _posts/notes/2023-05-27-dcss-on-4k-displays.md (limited to '_posts/notes/2023-05-27-dcss-on-4k-displays.md') diff --git a/_posts/notes/2023-05-27-dcss-on-4k-displays.md b/_posts/notes/2023-05-27-dcss-on-4k-displays.md new file mode 100644 index 0000000..ba46099 --- /dev/null +++ b/_posts/notes/2023-05-27-dcss-on-4k-displays.md @@ -0,0 +1,31 @@ +--- +title: "Make DCSS playable on 4k displays" +permalink: /dcss-on-4k-display.html +date: 2023-05-27T19:35:11+02:00 +layout: post +type: note +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 = 32 +tile_font_stat_size = 32 +tile_font_msg_size = 32 +tile_font_tip_size = 32 +tile_font_lbl_size = 32 +tile_sidebar_pixels = 64 +``` + +To zoom in and out in viewport, press `Ctrl+` and `Ctrl-` respectively. + +All the possible 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. -- cgit v1.2.3