summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* fixed linking bug (thanks Jacob Nixdorf) & iscntrl corner caseGravatar Connor Lane Smith 2010-09-132-2/+2
* simplificationGravatar Connor Lane Smith 2010-09-111-1/+1
* update to libdc, fixed utf8 bugGravatar Connor Lane Smith 2010-09-112-3/+3
* arrow offsetGravatar Connor Lane Smith 2010-08-201-1/+1
* fixed width bugGravatar Connor Lane Smith 2010-08-201-3/+3
* rebound paste, removed useless max widthsGravatar Connor Lane Smith 2010-08-202-9/+10
* new libdrawGravatar Connor Lane Smith 2010-08-191-25/+25
* new libdrawGravatar Connor Lane Smith 2010-08-191-2/+2
* resorted globalsGravatar Connor Lane Smith 2010-08-181-1/+1
* signed ints, ignore negative -l valueGravatar Connor Lane Smith 2010-08-181-4/+5
* fixed insert segfault, added nextruneGravatar Connor Lane Smith 2010-08-121-37/+35
* fixed pasteGravatar Connor Lane Smith 2010-08-111-7/+8
* new libdraw, replaced cistrstr with fstrstr, simpler readstdinGravatar Connor Lane Smith 2010-08-111-40/+34
* more efficient initfontGravatar Connor Lane Smith 2010-08-101-3/+4
* reverted calcoffsetsGravatar Connor Lane Smith 2010-08-101-5/+6
* simplificationsGravatar Connor Lane Smith 2010-08-102-19/+14
* cursor fix + styleGravatar Connor Lane Smith 2010-08-091-25/+19
* added ^D, removed ^MGravatar Connor Lane Smith 2010-08-061-1/+3
* new libdraw, typo fixesGravatar Connor Lane Smith 2010-08-052-6/+6
* another typo fix (thanks, Gene Auyeung)Gravatar Connor Lane Smith 2010-08-031-1/+1
* typo fixGravatar Connor Lane Smith 2010-08-031-1/+1
* cleaned upGravatar Connor Lane Smith 2010-08-031-2/+2
* merged *{h,v} functionsGravatar Connor Lane Smith 2010-08-031-59/+40
* retyped promptwGravatar Connor Lane Smith 2010-08-021-1/+1
* replaced promptwGravatar Connor Lane Smith 2010-08-022-3/+6
* fixed bugs, no more config.h, updated manpage, new libdrawGravatar Connor Lane Smith 2010-08-027-220/+162
* updated manpage, added paste, cleaned up, new libdrawGravatar Connor Lane Smith 2010-07-314-319/+271
* merged dmenu & dinput (clunky interface)Gravatar Connor Lane Smith 2010-07-305-440/+215
* underline matchGravatar Connor Lane Smith 2010-07-301-0/+5
* new libdrawGravatar Connor Lane Smith 2010-07-302-3/+6
* fixed vlist selectGravatar Connor Lane Smith 2010-07-301-5/+9
* updated to libdraw tipGravatar Connor Lane Smith 2010-07-272-3/+6
* added dmenu.h, common.cGravatar Connor Lane Smith 2010-07-026-314/+204
* updated to new libdrawGravatar Connor Lane Smith 2010-07-022-32/+20
* atexit cleanupGravatar Connor Lane Smith 2010-07-022-46/+36
* removed -e flag (too buggy), cleaned upGravatar Connor Lane Smith 2010-06-302-38/+20
* fixed no-input invisible text bugGravatar Connor Lane Smith 2010-06-301-2/+2
* libdraw now has own repoGravatar Connor Lane Smith 2010-06-3016-242/+8
* resizing vlist, new dinput bindingGravatar Connor Lane Smith 2010-06-301-18/+16
* cleaned upGravatar Connor Lane Smith 2010-06-301-5/+6
* decosmeticsGravatar Connor Lane Smith 2010-06-291-2/+2
* dinput with dmenu flags, fixed usage & -v, cosmeticsGravatar Connor Lane Smith 2010-06-292-14/+32
* extended libdrawGravatar Connor Lane Smith 2010-06-286-20/+40
* cleaned upGravatar Connor Lane Smith 2010-06-252-9/+10
* moved draw.c to libdraw.aGravatar Connor Lane Smith 2010-06-2414-148/+191
* removed colors from dcGravatar Connor Lane Smith 2010-06-243-22/+24
* decoupled draw.c from dmenu & dinputGravatar Connor Lane Smith 2010-06-244-117/+111
* fixed offsets, updated eprint, cleaned upGravatar Connor Lane Smith 2010-06-244-33/+42
* fixed static symbols in config.def.hGravatar Connor Lane Smith 2010-06-241-6/+6
* fixed makefileGravatar Connor Lane Smith 2010-06-231-3/+7
7config.mk: fix _XOPEN_SOURCE=700 for getline()Gravatar Hiltjo Posthuma 1-1/+1 2015-09-27config.mk: improve feature test checkGravatar Hiltjo Posthuma 1-1/+1 this fixes a crash on NetBSD because it requires -D_XOPEN_SOURCE (strdup, usleep). thanks k0ga and stateless for reporting and fixing this issue! 2015-08-06Fixed typo introduced by shared codeGravatar Eric Pruitt 1-1/+1 2015-07-19stest: get rid of getopt, use suckless arg.hGravatar Hiltjo Posthuma 3-53/+141 ... also some style improvements. 2015-07-19config.mk: add FREETYPELIBS and FREETYPEINCGravatar Hiltjo Posthuma 1-3/+9 These variables make it simpler to change the paths to this for ports. `pkg-config` is avoided because it sucks, in particular for cross-compilation. A commented path for *BSD is added, the Xft includes are located at: /usr/X11R6/include there. Also already bump the version number to 4.6, a release will come approximately in August. 2015-07-19fix prompt color style how it used to beGravatar Hiltjo Posthuma 1-1/+1 This is the style how it was before the big Xft change. The colors were inverted, this was not the case before the change. Reported by "zvz" on #suckless IRC, thanks! 2015-06-27Use libdraw: add Xft and fallback-fonts support to graphics libGravatar Hiltjo Posthuma 11-316/+684 - libdraw, util: add drw.{c,h}, util.{c,h} and update code. - libdraw: fix drw_rect(): use w and h parameter. - libdraw: print errstr if last character in string was ":" (sbase). - libdraw: drw_clr_free() allow valid free(NULL). - config.def.h: set default font to monospace. - cleanup() on exit. - LICENSE: update license string for dmenu -v to 2015. - LICENSE: add myself to LICENSE 2014-09-17applied Hiltjo's patch as suggested on the ml to fix ControlMask for C-j and C-mGravatar Anselm R Garbe 2-2/+5 2014-07-30fix crash with ctrl-enter as inputGravatar Hiltjo Posthuma 1-1/+2 reproduce: ./dmenu; send EOF; press ctrl+enter. 2014-05-29updated copyright notices in LICENSE and dmenu.c fileGravatar Anselm R Garbe 2-2/+2 2013-08-13applied Martin Kühl's inverse matching flag to stestGravatar Anselm R Garbe 2-4/+7 2013-08-02applied Martti Kühne's dmenu monitor patchGravatar Anselm R Garbe 3-4/+14 https://gist.github.com/mar77i/3349298/raw/f6581ca96627f4c71c0bd1faf531daaf2a613b95/monarg.patch becomes upstream now 2013-06-28accepted vi'is exit approach ^[ (suggested by Arkaduisz)Gravatar Anselm R Garbe 1-0/+2