diff options
author | 2024-04-07 23:35:26 +0200 | |
---|---|---|
committer | 2024-04-08 18:49:12 +0200 | |
commit | bb52f0ef9dc3177ab41539e7b4ffc28b6f48c80c (patch) | |
tree | 0dc742f2f4f82c5cac2c429aa90fb2d44c821507 | |
parent | a5ca3d6484f90ab328a6e6f2b8a272c939ac07ac (diff) | |
download | dwm-bb52f0ef9dc3177ab41539e7b4ffc28b6f48c80c.tar.gz dwm-bb52f0ef9dc3177ab41539e7b4ffc28b6f48c80c.tar.bz2 dwm-bb52f0ef9dc3177ab41539e7b4ffc28b6f48c80c.zip |
add 2nd font for emoji
-rw-r--r-- | config.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ static const int topbar = 1; /* 0 means bottom bar */ static const double activeopacity = 1.0f; /* Window opacity when it's focused (0 <= opacity <= 1) */ static const double inactiveopacity = 0.85f; /* Window opacity when it's inactive (0 <= opacity <= 1) */ static Bool bUseOpacity = True; /* Starts with opacity on any unfocused windows */ -static const char *fonts[] = { "Terminus:size=12" }; +static const char *fonts[] = { "Terminus:size=12", "NotoColorEmoji:pixelsize=12" }; static const char dmenufont[] = "Terminus:size=12"; static const char col_cyan[] = "#1793d0"; static const char col_white[] = "#ffffff"; |