diff options
author | Mikkel Oscar Lyderik <[email protected]> | 2016-03-28 19:38:19 +0200 |
---|---|---|
committer | Mikkel Oscar Lyderik <[email protected]> | 2016-03-30 00:47:58 +0200 |
commit | da567317ab27ec033fa53c6e4b4823dcfce7d24d (patch) | |
tree | cb1f9b26134b39c2605135142666994d122fe18c /sway/config.c | |
parent | e2774aee3c80088c7509ed31ae00baee92d6c6ba (diff) |
Make pango: prefix optional for font config
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index 4a1cb2bb..4cb8cced 100644 --- a/sway/config.c +++ b/sway/config.c @@ -160,7 +160,7 @@ static void config_defaults(struct sway_config *config) { config->resizing_key = M_RIGHT_CLICK; config->default_layout = L_NONE; config->default_orientation = L_NONE; - config->font = strdup("pango:monospace 10"); + config->font = strdup("monospace 10"); // Flags config->focus_follows_mouse = true; |