Created
September 9, 2015 18:07
-
-
Save slayerfat/db943d0848306129ee2c to your computer and use it in GitHub Desktop.
increased dungeon crawl tiles fontsizes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Increased font size in dungeon crawl | |
#INCLUDE THIS IN OR EQUIVALENT FOLDER: /usr/share/crawl/settings/init.txt | |
#(without the # in the include = custom_settings.txt) | |
#include = custom_settings.txt | |
#fullscreen | |
#tile_full_screen = false | |
#if you wanna use a custom font, you need to | |
#copy the *.ttf file in this directory: | |
#usr/share/crawl/dat/tiles/ | |
#im currently using DroidSansMono.ttf | |
tile_font_crt_file = VeraMono.ttf | |
tile_font_stat_file = VeraMono.ttf | |
tile_font_msg_file = VeraMono.ttf | |
tile_font_tip_file = VeraMono.ttf | |
#tile_font_lbl_file = Vera.ttf | |
#FontSizes (my current settings) | |
#crt - non-map screens (menus, message history, etc.) | |
tile_font_crt_size = 20 | |
#stat - stat area (hit points, AC, etc.) | |
tile_font_stat_size = 20 | |
#msg - message area | |
tile_font_msg_size = 18 | |
#tip - tooltips (mouseover information) | |
tile_font_tip_size = 15 | |
#lbl - item/monster names in inventory/main map | |
tile_font_lbl_size = 14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment