add dmenu dark and light variants

This commit is contained in:
2025-10-09 23:09:02 +02:00
parent 0336421c97
commit 1d15a6b4d5
4 changed files with 53 additions and 9 deletions

14
st.c
View File

@@ -2121,9 +2121,19 @@ ttycopy(int fildes)
}
void
externalpipettycopy(const Arg *arg)
externalpipepaste(const Arg *)
{
externalpipeinout(arg, ttycopy);
Arg arg;
arg.v = externalpastecmd();
externalpipeinout(&arg, ttycopy);
}
void
externalpipecopy(const Arg *)
{
Arg arg;
arg.v = externalcopycmd();
externalpipeinout(&arg, NULL);
}
void