summary refs log tree commit diff
path: root/etc (follow)
Commit message (Collapse)AuthorAge
* Shell script style passJune McEnroe2019-07-27
|
* Update Dark.terminalJune McEnroe2019-07-26
| | | | Why are the blobs so much bigger now?
* Add common includes to AGPL templateJune McEnroe2019-07-06
|
* Set sensitivity by slot in TF2June McEnroe2019-06-15
|
* Remove gitea2mastodonJune McEnroe2019-02-12
|
* Complete ASCII set of WIP serif8x16.psfJune McEnroe2019-01-22
| | | | Bad.
* Add WIP serif8x16.psfJune McEnroe2019-01-22
|
* Fix some symbols in sans8x16June McEnroe2019-01-16
|
* Add sans8x16.psfJune McEnroe2019-01-15
| | | | The symbols are still really bad...
* Bump copyright yearJune McEnroe2019-01-01
|
* Add TF2 sensitivity bindsJune McEnroe2018-12-11
|
* Add Go Mono variantsJune McEnroe2018-11-18
|
* Add \l binding to insert AGPL commentJune McEnroe2018-11-14
|
* Remove other building bindings for engineerJune McEnroe2018-10-27
|
* Nice shot!June McEnroe2018-10-19
|
* Add sans6x12June McEnroe2018-10-03
|
* Fix ≈ glyph of sans6x8June McEnroe2018-10-03
|
* Fill E0 through FE of sans6x10June McEnroe2018-10-03
|
* Fill 03 through 1F of sans6x10June McEnroe2018-10-03
|
* Fix ¼ glyph of sans6x8June McEnroe2018-10-03
|
* Fill A6 through AF of sans6x10June McEnroe2018-10-03
|
* Squish Ñ in sans6x10 consistentlyJune McEnroe2018-09-29
|
* Add box drawing glyphs to sans6x10June McEnroe2018-09-29
|
* Tweak sans6x8 shading blocksJune McEnroe2018-09-29
|
* Fill 7F through A5 of sans6x10June McEnroe2018-09-29
|
* Add sans6x10 basic glyphsJune McEnroe2018-09-28
|
* Make sans6x8 double quote narrowerJune McEnroe2018-09-28
|
* Add greek glyphs to sans6x8June McEnroe2018-09-28
|
* Add png target in etc/psfJune McEnroe2018-09-28
|
* Disable visual bell in light terminal profileJune McEnroe2018-09-28
|
* Add sans6x8 PSF2 fontJune McEnroe2018-09-27
|
* Map caps lock to escape on Linux consoleJune McEnroe2018-09-21
|
* Only post commits with bodies to MastodonJune McEnroe2018-08-18
|
* Run tf/cfg link script with /bin/shJune McEnroe2018-08-18
|
* Add gitea2mastodon CGI scriptJune McEnroe2018-08-17
| | | | If you're seeing this on Mastodon, it works.
* Disable visual bell entirely in TerminalJune McEnroe2018-08-16
| | | | You can't turn off bell in ksh.
* Move heavyweapons binds to autoexecJune McEnroe2018-06-10
|
* Add explode bindJune McEnroe2018-06-09
|
* Remove scout configJune McEnroe2018-06-09
|
* Remove viewmodel disablingJune McEnroe2018-05-30
| | | | | Switched to minimized viewmodels with lowest viewmodel FOV and it's much better.
* Remove demoman mouse2 bindJune McEnroe2018-05-30
| | | | I started playing with the sticky jumper rather than a shield.
* Use scheme for Light terminalJune McEnroe2018-05-29
| | | | All I did was swap black and white. Sitting outside now. Looks fine.
* Set TERM=xterm in Terminal.appJune McEnroe2018-05-13
| | | | 16 colours is all I need.
* Tabify shell scriptsJune McEnroe2018-05-13
|
* Add demoman configJune McEnroe2018-04-22
| | | | Haven't tested it yet but should be good for hybrid knight.
* Add TF2 configsJune McEnroe2018-04-15
|
* Output Linux console escapes from schemeJune McEnroe2018-03-31
|
* Brighten color schemeJune McEnroe2018-03-31
|
* Set Dark terminal to schemeJune McEnroe2018-03-31
|
* Set Light terminal white to Gruvbox fg3June McEnroe2018-02-28
|
explanation is interesting! Reported-by: Konstantin Ryabitsev <mricon@kernel.org> 2014-06-28ui-log: ignore unhandled argumentsJohn Keeping If you search for a bogus range string here: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/ Using something like "range" and "qwerty123456", it returns an "Internal Server Error" and the following in the logs: > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] fatal: > ambiguous argument 'qwerty123456': unknown revision or path not in the > working tree., referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] Use '--' to > separate paths from revisions, like this:, referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] 'git <command> > [<revision>...] -- [<file>...]', referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] Premature end > of script headers: cgit, referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ The cache will kick in, so if you search for the same string again, it'll show an empty range, so you have to change the bogus strings each time. This is because we just pass the arguments straight to Git's revision parsing machinery which die()s if it cannot parse an argument, printing the above to stderr and exiting. The patch below makes it a bit friendlier by just ignoring unhandled arguments, but I can't see an easy way to report errors when we can't parse revision arguments without losing the flexibility of supporting all of the revision specifiers supported by Git. Reported-by: Konstantin Ryabitsev <mricon@kernel.org> 2014-06-28git: update for git 2.0Christian Hesse prefixcmp() and suffixcmp() have been remove, functionality is now provided by starts_with() and ends_with(). Retrurn values have been changed, so instead of just renaming we have to fix logic. Everything else looks just fine. 2014-04-17remove trailing whitespaces from source filesChristian Hesse 2014-04-12git: update to 1.9.2Christian Hesse Everything works just bumping the version in Makefile and commit hash in submodule. No code changes required. 2014-04-05Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice For example, if I have two repos (remove-suffix is enabled): /foo /foo/bar http://cgit/foo/bar/ is interpreted as "repository 'foo', command 'bar'" instead of "repository 'foo/bar'" 2014-03-20Makefile: use more reliable git tarball mirrorJason A. Donenfeld 2014-03-20git: update to 1.9.1Christian Hesse