t* st + patches and config
       
   URI git clone git://git.codevoid.de/st-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 79174464d9aadc8b7054c6a409e0acf6dcc857bd
   DIR parent 753a663ac03203bd9352ef5ce0f8321fbef19fc9
   URI Author: Stefan Hagen <sh+git[at]codevoid[dot]de>
       Date:   Tue, 29 May 2018 11:48:29 +0200
       
       Add openclipboard patch, change font to Fira Mono
       
       Diffstat:
         M config.def.h                        |       1 +
         M config.h                            |       3 ++-
         A patches/st-openclipboard-20180525-… |      73 +++++++++++++++++++++++++++++++
         M st.h                                |       1 +
         M x.c                                 |      22 ++++++++++++++++++++++
       
       5 files changed, 99 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/config.def.h b/config.def.h
       t@@ -184,6 +184,7 @@ static Shortcut shortcuts[] = {
                { TERMMOD,              XK_Y,           selpaste,       {.i =  0} },
                { TERMMOD,              XK_Num_Lock,    numlock,        {.i =  0} },
                { TERMMOD,              XK_I,           iso14755,       {.i =  0} },
       +        { TERMMOD,              XK_o,           opencopied,     {.v = "firefox --new-window"} },
                { ShiftMask,            XK_Page_Up,     kscrollup,      {.i = -1} },
                { ShiftMask,            XK_Page_Down,   kscrolldown,    {.i = -1} },
        };
   DIR diff --git a/config.h b/config.h
       t@@ -5,7 +5,7 @@
         *
         * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
         */
       -static char *font = "FuraCode Nerd Font:size=11:antialias=false:autohint=false";
       +static char *font = "Fira Mono:size=11";
        static int borderpx = 2;
        static int borderperc = 20;
        #define histsize 2000
       t@@ -187,6 +187,7 @@ static Shortcut shortcuts[] = {
        //        { TERMMOD,              XK_Num_Lock,    numlock,        {.i =  0} },
        //        { TERMMOD,              XK_I,           iso14755,       {.i =  0} },
                { TERMMOD,              XK_L,           copyurl,        {.i =  0} },
       +        { TERMMOD,              XK_O,           opencopied,     {.v = "firefox --new-window"} },
                { ShiftMask,            XK_Page_Up,     kscrollup,      {.i = -1} },
                { ShiftMask,            XK_Page_Down,   kscrolldown,    {.i = -1} },
        };
   DIR diff --git a/patches/st-openclipboard-20180525-2c2500c.diff b/patches/st-openclipboard-20180525-2c2500c.diff
       t@@ -0,0 +1,73 @@
       +From 2c2500c057433148c49465b9d009193ffcef6432 Mon Sep 17 00:00:00 2001
       +From: Michael Buch <michaelbuch12@gmail.com>
       +Date: Fri, 25 May 2018 00:02:40 +0100
       +Subject: [PATCH] [st patch] Add ability to open clipboard with configured
       + program
       +
       +Lets user define a program to run in config.h and uses contents
       +of CLIPBOARD selection to pass as a parameter. This can be bound
       +to any key. By default binds Mod+o to opening the default
       +browser.
       +---
       + config.def.h |  1 +
       + st.h         |  1 +
       + x.c          | 22 ++++++++++++++++++++++
       + 3 files changed, 24 insertions(+)
       +
       +diff --git a/config.def.h b/config.def.h
       +index 82b1b09..83627db 100644
       +--- a/config.def.h
       ++++ b/config.def.h
       +@@ -178,6 +178,7 @@ static Shortcut shortcuts[] = {
       +         { TERMMOD,              XK_Y,           selpaste,       {.i =  0} },
       +         { TERMMOD,              XK_Num_Lock,    numlock,        {.i =  0} },
       +         { TERMMOD,              XK_I,           iso14755,       {.i =  0} },
       ++        { MODKEY,               XK_o,           opencopied,     {.v = "xdg-open"} },
       + };
       + 
       + /*
       +diff --git a/st.h b/st.h
       +index dac64d8..773eeb3 100644
       +--- a/st.h
       ++++ b/st.h
       +@@ -81,6 +81,7 @@ void redraw(void);
       + void draw(void);
       + 
       + void iso14755(const Arg *);
       ++void opencopied(const Arg *);
       + void printscreen(const Arg *);
       + void printsel(const Arg *);
       + void sendbreak(const Arg *);
       +diff --git a/x.c b/x.c
       +index c0bd890..b7edc5e 100644
       +--- a/x.c
       ++++ b/x.c
       +@@ -1949,3 +1949,25 @@ run:
       + 
       +         return 0;
       + }
       ++
       ++void
       ++opencopied(const Arg *arg)
       ++{
       ++        const size_t max_cmd = 2048;
       ++        const char *clip = xsel.clipboard;
       ++        if(!clip) {
       ++                fprintf(stderr, "Warning: nothing copied to clipboard\n");
       ++                return;
       ++        }
       ++
       ++        /* account for space/quote (3) and \0 (1) */
       ++        char cmd[max_cmd + strlen(clip) + 4];
       ++        strncpy(cmd, (char *)arg->v, max_cmd);
       ++        cmd[max_cmd] = '\0';
       ++
       ++        strcat(cmd, " \"");
       ++        strcat(cmd, clip);
       ++        strcat(cmd, "\"");
       ++
       ++        system(cmd);
       ++}
       +-- 
       +2.17.0
       +
   DIR diff --git a/st.h b/st.h
       t@@ -93,6 +93,7 @@ void redraw(void);
        void draw(void);
        
        void iso14755(const Arg *);
       +void opencopied(const Arg *);
        void printscreen(const Arg *);
        void printsel(const Arg *);
        void sendbreak(const Arg *);
   DIR diff --git a/x.c b/x.c
       t@@ -1964,3 +1964,25 @@ run:
        
                return 0;
        }
       +
       +void
       +opencopied(const Arg *arg)
       +{
       +        const size_t max_cmd = 2048;
       +        const char *clip = xsel.clipboard;
       +        if(!clip) {
       +                fprintf(stderr, "Warning: nothing copied to clipboard\n");
       +                return;
       +        }
       +
       +        /* account for space/quote (3) and \0 (1) */
       +        char cmd[max_cmd + strlen(clip) + 4];
       +        strncpy(cmd, (char *)arg->v, max_cmd);
       +        cmd[max_cmd] = '\0';
       +
       +        strcat(cmd, " \"");
       +        strcat(cmd, clip);
       +        strcat(cmd, "\"");
       +
       +        system(cmd);
       +}