]> git.sur5r.net Git - i3/i3/commitdiff
update default fonts for i3-{input,config-wizard,nagbar}
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 26 Mar 2015 09:03:30 +0000 (10:03 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 26 Mar 2015 09:03:30 +0000 (10:03 +0100)
We’ve done this a while ago in i3.config itself, but the tools in
question aren’t hooked up to that setting, so we need to do it here as
well.

i3-config-wizard/main.c
i3-input/main.c
i3-nagbar/main.c

index d94ad96f557d80d381af94c4c274115a84a11448..f052d6d570e69a601d31e449b1da29aa5591b348 100644 (file)
@@ -760,8 +760,8 @@ static void finish() {
 int main(int argc, char *argv[]) {
     config_path = resolve_tilde("~/.i3/config");
     socket_path = getenv("I3SOCK");
-    char *pattern = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1";
-    char *patternbold = "-misc-fixed-bold-r-normal--13-120-75-75-C-70-iso10646-1";
+    char *pattern = "pango:monospace 8";
+    char *patternbold = "pango:monospace bold 8";
     int o, option_index = 0;
 
     static struct option long_options[] = {
index 1f9cfe0469db303e203c2490255e9f3cbe738368..996fc0ea9f08958a3b563a359e85ad6c7388b798 100644 (file)
@@ -317,7 +317,7 @@ static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press
 int main(int argc, char *argv[]) {
     format = strdup("%s");
     socket_path = getenv("I3SOCK");
-    char *pattern = sstrdup("-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1");
+    char *pattern = sstrdup("pango:monospace 8");
     int o, option_index = 0;
 
     static struct option long_options[] = {
index 16559c96be107d2b0c37b0d7c21aa51f58e3fc81..805066f82d56b5a9002a0a836383356602b231cc 100644 (file)
@@ -322,7 +322,7 @@ int main(int argc, char *argv[]) {
 
     argv0 = argv[0];
 
-    char *pattern = sstrdup("-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1");
+    char *pattern = sstrdup("pango:monospace 8");
     int o, option_index = 0;
     enum { TYPE_ERROR = 0,
            TYPE_WARNING = 1 } bar_type = TYPE_ERROR;