shift+ins paste

This commit is contained in:
Venelin Dechkov
2026-07-30 11:54:49 +03:00
parent 47306a4169
commit f20804a589
3 changed files with 12 additions and 8 deletions
+2 -1
View File
@@ -66,7 +66,7 @@ static const Layout layouts[] = {
/* commands */
// static const char* dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
static const char* dmenucmd[] = { "dmenu_run", NULL };
static const char* dmenucmd[] = { "dmenu_run", "-fn", "monospace:size=14", NULL };
static const char* termcmd[] = { "st", NULL };
#if HAS_SW_BACKLIGHT
static const char* bright_up[] = { "brightnessctl", "s", "-q", "3%+", NULL };
@@ -80,6 +80,7 @@ static void webbookmark(const Arg* unused){
static const Key keys[] = {
/* modifier key function argument */
{ MODKEY|ShiftMask, XK_s, vene_screenshot, {0} }, // Take a screenshot, located in ~/screenshots and in clipboard
{ ShiftMask, XK_Insert, vene_paste_sel, {0} }, // Paste what the mouse selection
{ MODKEY|ShiftMask, XK_b, webbookmark, {0} }, // Open a web bookmark
{ 0, XF86XK_AudioRaiseVolume, vene_inc_vol, {0} },
{ 0, XF86XK_AudioLowerVolume, vene_dec_vol, {0} },