summary refs log tree commit diff stats
path: root/README
Commit message (Expand)AuthorAgeFilesLines
* manpage: renamed example/ to /usr/share/doc/ranger/hut2013-03-091-1/+1
* Fire in the Hole! v1.6.0hut2013-02-221-1/+1
* README: updated introductionhut2013-02-221-3/+5
* README: update dependencieshut2013-02-221-2/+2
* README: removed bash dependencyhut2013-02-181-1/+0
* README: added w3m as dependency for viewing imageshut2013-02-041-0/+1
* README: add bash as an optional dephut2013-02-031-0/+1
* Merge branch 'stable'hut2012-08-101-1/+1
|\
| * ceci n'est pas un nouveau version v1.5.5hut2012-08-101-1/+1
* | renamed ranger/defaults to ranger/confighut2012-08-021-3/+3
|/
* What kind of idiot invented bugs anyway? v1.5.4hut2012-05-031-1/+1
* Always remember to bring your towel. v1.5.3hut2012-03-051-1/+1
* Added "sudo" optional dependency to READMEhut2012-03-051-0/+1
* corrected READMEhut2011-11-091-4/+4
* The hard work of the electrons must be respected. v1.5.2hut2011-10-241-1/+1
* The hard work of the computer must be respected. v1.5.1hut2011-10-241-1/+1
* README: Added newlinehut2011-10-111-0/+1
* fixed some documentationhut2011-10-101-2/+3
* README: "file" really is optionalhut2011-10-101-1/+1
* README: Updated dependencieshut2011-10-081-4/+4
* README: Updatehut2011-10-081-21/+22
* general updateshut2011-10-081-5/+11
* README: polished, removed INSTALLhut2011-10-051-48/+44
* Changed version to 1.5.0hut2011-10-021-1/+1
* Merge branch 'stable'hut2011-10-021-1/+1
|\
| * One in five ranger users use it exclusively for browsing porn v1.4.4hut2011-10-021-1/+1
* | A little README updatehut2011-09-291-2/+3
* | shortened README, added early reference to the man pagehut2011-09-281-86/+19
|/
* Merge branch 'stable'hut2011-04-261-1/+1
|\
| * This gonna be cool once it's finished v1.4.3hut2011-04-051-1/+1
* | Use chardet in case of encoding detection problemshut2011-04-261-0/+1
|/
* Next version will run on pure Lisp Machines only v1.4.2hut2011-03-051-1/+1
* Added --choosedir, a more logical alternative to --fail-unless-cdhut2011-02-151-5/+4
* Moved vimscript to README next to the bash script :)hut2011-02-151-6/+26
* If ranger won't run, you still got peanut butter to live for. v1.4.1hut2011-01-041-1/+1
* We are not authorized to disclose the commit message v1.4.0hut2010-12-221-1/+1
* updated READMEhut2010-12-101-3/+6
* Merge branch 'cp+preview'hut2010-10-121-0/+6
|\
| * Merge branch 'master' into previewhut2010-10-081-1/+1
| |\
| * \ Merge branch 'stable' into previewhut2010-10-051-6/+35
| |\ \
| | * | core.actions: Fixed yy/pp bug when yanking multiple directories v1.2.1hut2010-09-161-1/+1
| * | | data/scope.sh: added lynxhut2010-06-221-0/+1
| * | | README: added dependencies for scope.shhut2010-06-221-0/+5
* | | | new version: 1.3.1, merge with cp+preview branchhut2010-10-121-1/+1
| |_|/ |/| |
* | | Incremented version number to 1.3 (testing)hut2010-09-131-1/+1
| |/ |/|
* | Beware of low-flying butterflies v1.2.0hut2010-09-131-1/+1
* | README: Usage Tips sectionhut2010-09-131-0/+6
* | README: added ranger starting function examplehut2010-09-111-0/+14
* | Tuned versioning scheme to be more intuitive, back to 1.1.2hut2010-08-281-2/+2
* | Changed version number to 1.2 (testing) to adhere with versioning schemehut2010-08-281-2/+2
ss="w"> (*arrange)(void); } Layout; extern const char *tags[]; /* all tags */ extern char stext[256]; /* status text */ extern int screen, sx, sy, sw, sh; /* screen geometry */ extern int wax, way, wah, waw; /* windowarea geometry */ extern unsigned int bh, blw; /* bar height, bar layout label width */ extern unsigned int master, nmaster; /* master percent, number of master clients */ extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */ extern void (*handler[LASTEvent])(XEvent *); /* event handler */ extern Atom wmatom[WMLast], netatom[NetLast]; extern Bool running, selscreen, *seltag; /* seltag is array of Bool */ extern Client *clients, *sel, *stack; /* global client list and stack */ extern Cursor cursor[CurLast]; extern DC dc; /* global draw context */ extern Display *dpy; extern Layout *lt; extern Window root, barwin; /* client.c */ extern void configure(Client *c); /* send synthetic configure event */ extern void focus(Client *c); /* focus c, c may be NULL */ extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ extern void killclient(Arg *arg); /* kill c nicely */ extern void manage(Window w, XWindowAttributes *wa); /* manage new client */ extern Client *nexttiled(Client *c); /* returns tiled successor of c */ extern void resize(Client *c, int x, int y, int w, int h, Bool sizehints); /* resize with given coordinates c*/ extern void updatesizehints(Client *c); /* update the size hint variables of c */ extern void updatetitle(Client *c); /* update the name of c */ extern void unmanage(Client *c); /* destroy c */ extern void zoom(Arg *arg); /* zooms the focused client to master area, arg is ignored */ /* draw.c */ extern void drawstatus(void); /* draw the bar */ extern void drawtext(const char *text, unsigned long col[ColLast]); /* draw text */ extern unsigned int textw(const char *text); /* return the width of text in px*/ /* event.c */ extern void grabkeys(void); /* grab all keys defined in config.h */ /* layout.c */ extern void incnmaster(Arg *arg); /* increments nmaster with arg's index value */ extern void initlayouts(void); /* initialize layout array */ extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */ extern void restack(void); /* restores z layers of all clients */ extern void setlayout(Arg *arg); /* sets layout, -1 toggles */ extern void toggleversatile(Arg *arg); /* toggles focusesd client between versatile/and non-versatile state */ extern void versatile(void); /* arranges all windows versatile */ /* main.c */ extern void quit(Arg *arg); /* quit dwm nicely */ extern void sendevent(Window w, Atom a, long value); /* send synthetic event to w */ extern int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */ /* tag.c */ extern void compileregs(void); /* initialize regexps of rules defined in config.h */ extern Bool isvisible(Client *c); /* returns True if client is visible */ extern void settags(Client *c, Client *trans); /* sets tags of c */ extern void tag(Arg *arg); /* tags c with arg's index */ extern void toggletag(Arg *arg); /* toggles c tags with arg's index */ extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */ extern void view(Arg *arg); /* views the tag with arg's index */ /* util.c */ extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */ extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */