feat/clipboard (#6)

Reviewed-on: #6
This commit is contained in:
syrell 2023-06-27 22:30:31 +02:00
parent fb7383d52f
commit 71d1f725b3

6
x.c
View File

@ -689,6 +689,8 @@ setsel(char *str, Time t)
XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
selclear();
xclipcopy();
}
void
@ -712,7 +714,9 @@ brelease(XEvent *e)
if (mouseaction(e, 1))
return;
if (btn == Button1)
if (btn == Button3)
selpaste(NULL);
else if (btn == Button1)
mousesel(e, 1);
}