From 188d14e5b2524a7c48dfe176cbb2d7c8b116650d Mon Sep 17 00:00:00 2001 From: Xander Swan Date: Wed, 3 Dec 2025 10:00:42 -0500 Subject: update lsp to use neovim's lsp --- dwm_config.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'dwm_config.h') diff --git a/dwm_config.h b/dwm_config.h index 76d5ce7..9afaf24 100644 --- a/dwm_config.h +++ b/dwm_config.h @@ -7,8 +7,8 @@ static const unsigned int borderpx = 2; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Misc Fixed:style=Regular:pixelsize=14:antialias=false" }; -static const char dmenufont[] = "Misc Fixed:style=Regular:pixelsize=14:antialias=false"; +static const char *fonts[] = { "Fixed:style=Regular:pixelsize=14:antialias=false" }; +static const char dmenufont[] = "Fixed:style=Regular:pixelsize=14:antialias=false"; static const char col_bg_active[] = "#E0E0E0"; static const char col_fg_active[] = "#000000"; @@ -31,11 +31,11 @@ static const Rule rules[] = { * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating monitor */ - // { "Gimp", NULL, NULL, 0, 1, -1 }, - { "librewolf", NULL, NULL, T(7), 0, -1 }, - { "thunderbird", NULL, NULL, T(7), 0, -1 }, - { "discord", NULL, NULL, T(8), 0, -1 }, + /* class instance title tags mask iscentered isfloating monitor */ + { "librewolf", NULL, NULL, T(7), 0, 0, -1 }, + { "thunderbird", NULL, NULL, T(7), 0, 0, -1 }, + { "discord", NULL, NULL, T(8), 0, 0, -1 }, + { NULL, NULL, "DEMONCHIME", 0, 1, 1, -1 }, }; /* layout(s) */ -- cgit v1.3-2-g0d8e