Introduction
Introduction Statistics Contact Development Disclaimer Help
code-style: shuffle global variables - sfeed_curses - sfeed curses UI (now part…
git clone git://git.codemadness.org/sfeed_curses
Log
Files
Refs
README
LICENSE
---
commit d4b43904cf55ed616524e241ae5e4b191e1e22d5
parent d05e1dd6754f12dfe86e43545d26c7cdaccff3c9
Author: Hiltjo Posthuma <[email protected]>
Date: Wed, 10 Mar 2021 17:15:45 +0100
code-style: shuffle global variables
Diffstat:
M sfeed_curses.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/sfeed_curses.c b/sfeed_curses.c
@@ -39,17 +39,6 @@
#endif
#include SFEED_THEME
-static char *plumbercmd = "xdg-open"; /* env variable: $SFEED_PLUMBER */
-static char *pipercmd = "sfeed_content"; /* env variable: $SFEED_PIPER */
-static char *yankercmd = "xclip -r"; /* env variable: $SFEED_YANKER */
-static char *markreadcmd = "sfeed_markread read"; /* env variable: $SFEED_MARK…
-static char *markunreadcmd = "sfeed_markread unread"; /* env variable: $SFEED_…
-static char *cmdenv; /* env variable: $SFEED_AUTOCMD */
-static int plumberia = 0; /* env variable: $SFEED_PLUMBER_INTERACTIVE */
-static int piperia = 1; /* env variable: $SFEED_PIPER_INTERACTIVE */
-static int yankeria = 0; /* env variable: $SFEED_YANKER_INTERACTIVE */
-static int lazyload = 0; /* env variable: $SFEED_LAZYLOAD */
-
enum {
ATTR_RESET = 0, ATTR_BOLD_ON = 1, ATTR_FAINT_ON = 2, ATTR_REVER…
};
@@ -174,6 +163,17 @@ static size_t nurls;
volatile sig_atomic_t sigstate = 0;
+static char *plumbercmd = "xdg-open"; /* env variable: $SFEED_PLUMBER */
+static char *pipercmd = "sfeed_content"; /* env variable: $SFEED_PIPER */
+static char *yankercmd = "xclip -r"; /* env variable: $SFEED_YANKER */
+static char *markreadcmd = "sfeed_markread read"; /* env variable: $SFEED_MARK…
+static char *markunreadcmd = "sfeed_markread unread"; /* env variable: $SFEED_…
+static char *cmdenv; /* env variable: $SFEED_AUTOCMD */
+static int plumberia = 0; /* env variable: $SFEED_PLUMBER_INTERACTIVE */
+static int piperia = 1; /* env variable: $SFEED_PIPER_INTERACTIVE */
+static int yankeria = 0; /* env variable: $SFEED_YANKER_INTERACTIVE */
+static int lazyload = 0; /* env variable: $SFEED_LAZYLOAD */
+
int
ttywritef(const char *fmt, ...)
{
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.