about summary refs log tree commit diff stats
path: root/dwm.1
Commit message (Collapse)AuthorAgeFilesLines
* really small changes to dwm.1Anselm R. Garbe2006-09-081-4/+3
|
* made markups in dwm.1 more consistentAnselm R. Garbe2006-09-071-95/+38
|
* small addition to dwm.1Anselm R. Garbe2006-09-071-4/+4
|
* well ok, added Mod-s to default bindings (however, I don't need it)Anselm R. Garbe2006-09-051-0/+6
|
* I really need column growing, now pushing upstreamAnselm R. Garbe2006-09-051-0/+6
|
* applied sanders patchAnselm R. Garbe2006-09-011-6/+12
|
* changed shortcut into Mod1-0Anselm R. Garbe2006-08-311-5/+5
|
* added viewall to mainstream (only Ross Mohns version, not the toggle)Anselm R. Garbe2006-08-311-0/+4
|
* implemented Button2 press on tags for toggletag on the focused clientAnselm R. Garbe2006-08-311-0/+6
|
* applied sanders somepatches.patchAnselm R. Garbe2006-08-281-1/+6
|
* updated man page of dwmAnselm R. Garbe2006-08-251-3/+3
|
* yet another fixAnselm R. Garbe2006-08-241-1/+1
|
* small man page fixAnselm R. Garbe2006-08-241-1/+2
|
* updated man pageAnselm R. Garbe2006-08-231-4/+4
|
* applied tag drawing change to man pageAnselm R. Garbe2006-08-231-4/+4
|
* small fix of man pageAnselm R. Garbe2006-08-231-1/+1
|
* updated man pageAnselm R. Garbe2006-08-221-2/+1
|
* small changes to dwm.1, rearranged order within main event loopAnselm R.Garbe2006-08-211-6/+8
|
* applied jk_to_tab patchAnselm R.Garbe2006-08-151-34/+42
|
* applied sanders man page patch, removed button2 from bar clickAnselm R.Garbe2006-08-141-19/+21
|
* implemented restack behavior (floats are on top in tiled mode)Anselm R.Garbe2006-08-141-2/+2
|
* removed viewnext/viewprevAnselm R.Garbe2006-08-141-16/+0
|
* updated man page, added CAVEATS sectionAnselm R.Garbe2006-08-131-7/+14
|
* implemented viewextend and added M-S-C-n shortcuts for extending the current ↵Anselm R.Garbe2006-08-111-4/+17
| | | | view... updated man page (works great!) nice feature
* applied Sanders fixes to dwm.1Anselm R.Garbe2006-08-111-4/+5
|
* fixed dwm.1, added Mod1-Shift-c (was missing for an odd reason)Anselm R.Garbe2006-08-111-3/+7
|
* updated dwm(1)Anselm R.Garbe2006-08-111-0/+14
|
* applied sander's patchAnselm R.Garbe2006-08-101-3/+10
|
* disallow zoom on maximized clientsAnselm R.Garbe2006-08-101-4/+0
|
* added a trailing '.' to shortcut descriptions in dwm(1)arg@10ksloc.org2006-08-071-15/+15
|
* applied Sanders man page/Makefile patcharg@10ksloc.org2006-08-071-1/+1
|
* updated man page
/*
 * parser.h
 * vim: expandtab:ts=4:sts=4:sw=4
 *
 * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
 *
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <https://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give permission to
 * link the code of portions of this program with the OpenSSL library under
 * certain conditions as described in each individual source file, and
 * distribute linked combinations including the two.
 *
 * You must obey the GNU General Public License in all respects for all of the
 * code used other than OpenSSL. If you modify file(s) with this exception, you
 * may extend this exception to your version of the file(s), but you are not
 * obligated to do so. If you do not wish to do so, delete this exception
 * statement from your version. If you delete this exception statement from all
 * source files in the program, then also delete it here.
 *
 */

#ifndef TOOLS_PARSER_H
#define TOOLS_PARSER_H

#include <glib.h>

gchar** parse_args(const char* const inp, int min, int max, gboolean* result);
gchar** parse_args_with_freetext(const char* const inp, int min, int max, gboolean* result);
gchar** parse_args_as_one(const char* const inp, int min, int max, gboolean* result);
int count_tokens(const char* const string);
char* get_start(const char* const string, int tokens);
GHashTable* parse_options(gchar** args, gchar** keys, gboolean* res);
void options_destroy(GHashTable* options);

#endif
selm R. Garbe
2006-07-161-35/+28 (git 2.36.2.497.gbbea4dcf42) at 2025-01-01 09:29:51 +0000 'logheader'>* several additions in mouse handling ;)Anselm R. Garbe2006-07-161-43/+20
|
* fixed XSync handling and finished man pageAnselm R. Garbe2006-07-151-4/+54
|
* prep 0.1 0.1Anselm R. Garbe2006-07-141-1/+1
|
* implemented dwm reading status text from stdin Anselm R. Garbe2006-07-141-1/+15
|