summarylogtreecommitdiffstats
path: root/dwm-config-6.2.diff
diff options
context:
space:
mode:
authoroakszyjrnrdy2020-09-10 03:29:39 +0800
committeroakszyjrnrdy2020-09-10 03:29:39 +0800
commitd2aeec7fdb29981c4e4937087403fc6236daaf58 (patch)
tree737ca1df6ebfb74ad180f7fdd352fcaa390093c4 /dwm-config-6.2.diff
downloadaur-d2aeec7fdb29981c4e4937087403fc6236daaf58.tar.gz
feat: init commit
Diffstat (limited to 'dwm-config-6.2.diff')
-rw-r--r--dwm-config-6.2.diff55
1 files changed, 55 insertions, 0 deletions
diff --git a/dwm-config-6.2.diff b/dwm-config-6.2.diff
new file mode 100644
index 000000000000..f13a01fa5aec
--- /dev/null
+++ b/dwm-config-6.2.diff
@@ -0,0 +1,55 @@
+--- a/config.def.h 2020-09-10 03:08:40.220047365 +0800
++++ b/config.def.h 2020-09-10 03:21:30.310052738 +0800
+@@ -1,12 +1,20 @@
+ /* See LICENSE file for copyright and license details. */
+
+ /* appearance */
+-static const unsigned int borderpx = 1; /* border pixel of windows */
++static const unsigned int borderpx = 6; /* 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[] = { "monospace:size=10" };
+-static const char dmenufont[] = "monospace:size=10";
++static const char *fonts[] = {
++ "monospace:size=14",
++ "Noto Sans CJK SC:size=14",
++ "Noto Sans CJK TC:size=14",
++ "Noto Sans CJK HK:size=14",
++ "Noto Sans CJK JP:size=14",
++ "Noto Sans CJK KR:size=14",
++ "Noto Color Emoji:size=14"
++};
++static const char dmenufont[] = "monospace:size=14";
+ static const char col_gray1[] = "#222222";
+ static const char col_gray2[] = "#444444";
+ static const char col_gray3[] = "#bbbbbb";
+@@ -28,7 +36,9 @@
+ */
+ /* class instance title tags mask isfloating monitor */
+ { "Gimp", NULL, NULL, 0, 1, -1 },
+- { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
++ { "Nightly", NULL, NULL, 1 << 1, 0, -1 },
++ { "Qemu-system-x86_64", "qemu", NULL, 0, 1, -1 },
++ { "Steam", "Steam", NULL, 1 << 8, 0, -1 },
+ };
+
+ /* layout(s) */
+@@ -44,7 +54,7 @@
+ };
+
+ /* key definitions */
+-#define MODKEY Mod1Mask
++#define MODKEY Mod4Mask
+ #define TAGKEYS(KEY,TAG) \
+ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
+ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
+@@ -57,7 +67,7 @@
+ /* commands */
+ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
+ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+-static const char *termcmd[] = { "st", NULL };
++static const char *termcmd[] = { "alacritty", NULL };
+
+ static Key keys[] = {
+ /* modifier key function argument */