aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* etc/sh/rc: Remove nvi mapping for leftrightEuAndreh2024-11-141-1/+1
|
* bin/vcs: Tiny improvement for `fossil_status()`EuAndreh2024-11-141-0/+1
|
* bin/boop: Also show $PWD if no message is givenEuAndreh2024-11-141-1/+1
|
* Move bin/{htmlesc,shesc,uri} to eutEuAndreh2024-11-143-284/+0
|
* bin/forever: Add "-n" option, remove long optionsEuAndreh2024-11-141-45/+7
|
* bin/clean: Shrink to the minimumEuAndreh2024-11-141-66/+1
|
* etc/guix/home.scm: Add editline packageEuAndreh2024-10-171-0/+1
|
* etc/guix/home.scm: Add scryptkdf packageEuAndreh2024-10-171-0/+1
|
* etc/guix/home.scm: Replace sqlite with acudeEuAndreh2024-10-171-3/+1
|
* bin/muffle: Speed upEuAndreh2024-10-121-10/+5
| | | | | | | | | | | | | | | First, use sort -m, as both inputs are already sorted. This both changes from it from O(n*log(n)) to O(n), and allows sort(1) to produce streaming output, instead of sponging all the input, and potentially spilling to disk during the process. Second, use awk(1) when looping. Not only awk(1) is made for this type of job, but also we only call it once and let it do the loop, over looping manually and calling '['(1), printf() and cut(1) on each iteration. Now we call cut(1) only once. It went from being annoying enough to make me pause considering using to being unnoticeable.
* etc/guix/home.scm: Add mpv packageEuAndreh2024-09-301-0/+1
|
* etc/sh/rc: Add xmodmap config for "/" and "?"EuAndreh2024-09-302-1/+5
|
* etc/xmobar/velhinho: Include /mnt/doisEuAndreh2024-09-161-1/+1
|
* bin/serve: Add -n optionEuAndreh2024-09-111-3/+10
|
* rm bin/untill: Moved to eutEuAndreh2024-08-291-94/+0
|
* etc/ssh/config.tmpl: Disable PasswordAuthentication by defaultEuAndreh2024-08-241-0/+1
|
* etc/ssh/known_hosts: Add entry for asamiEuAndreh2024-08-241-3/+3
|
* etc/ssh/config.tmpl: Add "asami" and commentsEuAndreh2024-08-241-0/+7
|
* etc/ssh/config.tmpl: Simple reorderEuAndreh2024-08-241-7/+7
|
* etc/git/config: advice.forceDeleteBranch = falseEuAndreh2024-08-211-0/+1
|
* system.scm: Better instructions on creating /swapfileEuAndreh2024-08-201-5/+7
|
* etc/guix/home.scm: Add "entr" and "inotify-tools" packagesEuAndreh2024-08-171-0/+2
|
* etc/guix/{home,system}.scm: Rename queue: -> q:EuAndreh2024-08-172-6/+6
|
* etc/guix/channels.scm: Update to new channel referenceEuAndreh2024-08-171-2/+2
|
* etc/guix/system.scm: Remove extra packagesEuAndreh2024-08-121-3/+1
|
* etc/guix/system.scm: Remove i3EuAndreh2024-08-121-2/+1
|
* etc/guix/system.scm: Add (now required) containerd-service-typeEuAndreh2024-08-121-0/+1
|
* etc/guix/system.scm: Remove custom xmonadEuAndreh2024-08-121-24/+2
|
* etc/guix/system.scm: Add fixed "xmonad-wm" packageEuAndreh2024-08-081-3/+26
|
* etc/sh/rc: Shrink $GOLDFLAGSEuAndreh2024-08-081-1/+1
|
* etc/guix/home.scm: Get go packages from (org euandre queue)EuAndreh2024-08-051-2/+3
|
* etc/sh/rc: Disable quit confirmation from gdbEuAndreh2024-08-051-1/+1
|
* etc/sh/rc: Add $YFLAGS, $GOCFLAGS and $GOLDFLAGSEuAndreh2024-08-051-0/+3
|
* etc/guix/system.scm: Remove nginx serviceEuAndreh2024-08-051-11/+0
|
* etc/guix/home.scm: Disable broken scikit-learnEuAndreh2024-07-151-1/+1
|
* etc/guix/home.scm: Re-add libreofficeEuAndreh2024-07-151-0/+1
|
* etc/guix/home.scm: Remove pytest-xdist packageEuAndreh2024-07-151-1/+0
|
* etc/guix/home.scm: Add motif packageEuAndreh2024-07-151-1/+3
|
* etc/sh/rc: Remove -fsanitize=undefined fro $CFLAGS and $LDFLAGSEuAndreh2024-07-031-2/+1
|
* mv bin/e bin/eeEuAndreh2024-07-032-1/+2
|
* Simplify code used by xmobarEuAndreh2024-06-162-1/+5
| | | | | Remove the endless loop, and stop polling the system while doing nothing.
* etc/xmonad/xmonad.hs: Add keybindings for switching monitors setupEuAndreh2024-06-161-0/+4
|
* etc/sh/rc: Use C17 in $CCFLAGS!EuAndreh2024-06-161-1/+1
| | | | | | POSIX 2024 has been published! https://news.ycombinator.com/item?id=40679809
* etc/sh/rc: Remove -g from $CCFLAGS and -static from $LLDFLAGSEuAndreh2024-06-161-5/+3
|
* bin/uri: Unbuffer when processing an stream onlineEuAndreh2024-06-161-2/+4
|
* bin/with-{one-monitor,two-monitors}: Add output from arandr(1)EuAndreh2024-06-162-0/+4
|
* etc/sh/rc: Add -fsanitize=undefined to $LDFLAGSEuAndreh2024-06-091-2/+2
|
* etc/guix/home.scm: Add "fontconfig" and "freetype" packages: dependencies ↵EuAndreh2024-06-051-0/+2
| | | | for building "vt"
* etc/git/ignore: RemoveEuAndreh2024-06-051-8/+0
|
* etc/sh/rc: Add alias for gdbEuAndreh2024-06-031-0/+1
|