78d222002b
full description of changes: -remove fontlist, and all associated structures/calls, it's not needed. this also removes any doubt about leftover 9wm code (the list was borrowed from it). Since cwm now uses Xft for everything, the legacy font handling is just not needed. -add /* FALLTHROUGH */ comments into grab_{label,menu}. I actually didn't intend grab_menu to be a fallthrough, but it actually works quite well there, so remove the extra rectangle drawing. I love it when that happens. -remove a couple of unused prototypes that were obviously missed before. -remove a bunch of commented out or if 0ed out code. It doesn't look to be coming back anytime soon. -several functions returned an int, but this was never checked. most of them only failed if they failed to grab the pointer (thus the internal state didn't change), so just make them void and return early if this is the case. -remove several unused functions and some useless variables. knocks something like 200bytes off the stripped binary size for me. ok marc@, tested by several others.
93 lines
2.0 KiB
C
93 lines
2.0 KiB
C
/*
|
|
* calmwm - the calm window manager
|
|
*
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* $Id: util.c,v 1.4 2008/01/16 11:39:20 oga Exp $
|
|
*/
|
|
|
|
#include "headers.h"
|
|
#include "calmwm.h"
|
|
|
|
#define MAXARGLEN 20
|
|
|
|
int
|
|
u_spawn(char *argstr)
|
|
{
|
|
char *args[MAXARGLEN], **ap;
|
|
char **end = &args[MAXARGLEN - 1];
|
|
|
|
switch (fork()) {
|
|
case 0:
|
|
ap = args;
|
|
while (ap < end && (*ap = strsep(&argstr, " \t")) != NULL)
|
|
ap++;
|
|
|
|
*ap = NULL;
|
|
setsid();
|
|
execvp(args[0], args);
|
|
err(1, args[0]);
|
|
break;
|
|
case -1:
|
|
warn("fork");
|
|
return (-1);
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return (0);
|
|
}
|
|
|
|
void
|
|
exec_wm(char *argstr)
|
|
{
|
|
char *args[MAXARGLEN], **ap = args;
|
|
char **end = &args[MAXARGLEN - 1];
|
|
|
|
while (ap < end && (*ap = strsep(&argstr, " \t")) != NULL)
|
|
ap++;
|
|
|
|
*ap = NULL;
|
|
setsid();
|
|
execvp(args[0], args);
|
|
err(1, args[0]);
|
|
}
|
|
|
|
int dirent_isdir(char *filename) {
|
|
struct stat buffer;
|
|
int return_value;
|
|
|
|
return_value = stat(filename, &buffer);
|
|
|
|
if(return_value == -1)
|
|
return 0;
|
|
else
|
|
return S_ISDIR(buffer.st_mode);
|
|
}
|
|
|
|
int dirent_islink(char *filename) {
|
|
struct stat buffer;
|
|
int return_value;
|
|
|
|
return_value = lstat(filename, &buffer);
|
|
|
|
if(return_value == -1)
|
|
return 0;
|
|
else
|
|
return S_ISLNK(buffer.st_mode);
|
|
}
|
|
|
|
|