summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-03-06 12:57:13 +0100
committerAleksa Vuckovic <aleksa@vuckovic.cc>2023-12-06 05:05:49 +0100
commit3daf2d2bafce5d780d788b58994497af5664f08f (patch)
tree7c3d12f8442cedc35542c2e408968b089b2df757
parent01d7baa88388b8a1fc0880aa4aeb2a857298ec82 (diff)
using nerd font for dwm & dmenu
-rw-r--r--config.def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index 060d1ec..c695132 100644
--- a/config.def.h
+++ b/config.def.h
@@ -19,8 +19,8 @@ static const unsigned int borderpx = 1; /* 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:autohint=true:antialias=true" };
-static const char dmenufont[] = "monospace:size=10";
+static const char *fonts[] = { "Inconsolata Nerd Font Mono:Style=Bold:pixelsize=16:antialias=true:autohint=true" };
+static const char dmenufont[] = "Inconsolata Nerd Font Mono:Style=Bold:pixelsize=16:antialias=true:autohint=true";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@@ -119,7 +119,7 @@ static const Key keys[] = {
{ 0, XF86XK_AudioPlay, spawn, SHCMD("/usr/bin/mpc toggle") },
{ 0, XF86XK_AudioNext, spawn, SHCMD("/usr/bin/mpc next") },
{ 0, XF86XK_Search, spawn, SHCMD("$BROWSER") },
- { 0, XK_Print, spawn, SHCMD("/usr/bin/maim | xclip -selection clipboard -t image/png; xclip -out -selection clipboard > ~/Pictures/Screenshots/$(date '+%F-%H-%M-%S').png")},
+ { 0, XK_Print, spawn, SHCMD("/usr/bin/maim -u | xclip -selection clipboard -t image/png; xclip -out -selection clipboard > ~/Pictures/Screenshots/$(date '+%F-%H-%M-%S').png")},
{ ShiftMask, XK_Print, spawn, SHCMD("/usr/bin/maim -su | xclip -selection clipboard -t image/png; xclip -out -selection clipboard > ~/Pictures/Screenshots/$(date '+%F-%H-%M-%S').png")}
};