add dmenu dark and light variants

This commit is contained in:
2025-10-09 23:09:02 +02:00
parent 634f6cb5ad
commit 98a2dd55b0
4 changed files with 53 additions and 9 deletions

14
st.c
View File

@@ -2206,9 +2206,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