about summary refs log tree commit diff stats
path: root/src/main.nim
Commit message (Expand)AuthorAgeFilesLines
...
* WIP pagerbptato2022-10-041-12/+19
* Tweaks/bugfixes for armbptato2022-09-141-1/+1
* More JS bindingsbptato2022-09-131-1/+7
* Add JS binding generationbptato2022-09-121-2/+2
* Update docsbptato2022-07-301-0/+2
* Implement --, handle empty argumentsbptato2022-02-191-5/+14
* Remove some unused variablesbptato2022-02-121-2/+0
* Add some command line fixes, fix related bugsbptato2022-01-251-4/+25
* Rebrand programbptato2022-01-221-1/+49
* Add client for buffer controlbptato2021-12-201-74/+2
* Fix pager mode formattingbptato2021-12-191-0/+1
* More configuration optionsbptato2021-12-191-0/+2
* Refactor selector code, optimize style tagsbptato2021-12-181-1/+1
* Profiling and more CSS compatibilitybptato2021-11-151-0/+2
* Initial implementation of CSS :hoverbptato2021-11-141-4/+0
* Rename layout.nimbptato2021-11-121-1/+1
* Colors, italic, bold, read from pipebptato2021-11-121-10/+27
* Layout engine improvements, use author style sheetbptato2021-11-101-1/+1
* Add RowBox structurebptato2021-10-031-1/+1
* Some refactoringbptato2021-08-101-2/+3
* Implement CSS display none in box renderer etc.bptato2021-08-081-2/+2
* Reorganize importsbptato2021-08-071-6/+2
* HTML display with highly broken box modelbptato2021-08-061-4/+6
* Refactoring in buffer.nimbptato2021-08-061-2/+1
* Refactor display.nim and twtio.nimbptato2021-08-061-4/+2
* Config refactoring, width aware cursor movementbptato2021-08-061-3/+1
* Implement new buffer model which supports X coordsbptato2021-08-051-9/+11
* more stuffbptato2021-08-051-2/+0
* More css stuffbptato2021-08-041-8/+5
* CSS selectors and re-organizationbptato2021-07-301-12/+16
* ...bptato2021-03-171-1/+6
* Moved stuff etcbptato2021-03-131-0/+65
55 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# dwm version
VERSION = 0.7

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I/usr/lib -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# compiler
CC = cc