aboutsummaryrefslogtreecommitdiff
path: root/bin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bin/reconfigure: Remove timeout limitationEuAndreh2023-03-151-4/+1
| | | | | The cronjob has a timeout, and running manually can be enclosed by a timeout if required.
* bin/x: Add extra newline separation between usage() and help() stringsEuAndreh2023-03-141-0/+1
|
* etc/guix/system.scm: Add Nix system serviceEuAndreh2023-03-131-0/+2
|
* Embed with-email(1) into cronjob(1) and improve its reportingEuAndreh2023-03-131-92/+0
|
* bin/reconfigure: Make it verbose by default via "set -x"EuAndreh2023-03-131-0/+1
| | | | For debugging cronjob output.
* bin/email: Make ADDRESS optionalEuAndreh2023-03-121-6/+9
|
* bin/reconfigure: Add -U option to call update(1)EuAndreh2023-03-121-2/+16
| | | | Adapt the cronjob to use it also.
* bin/email: Avoid erros with echo by replacing it with printfEuAndreh2023-03-111-1/+1
|
* bin/80: Adapt to the working vcs(1)EuAndreh2023-03-071-1/+1
|
* bin/gc: Remove gc_email stepEuAndreh2023-03-031-7/+0
|
* bin/re: Silence ShellCheck false positiveEuAndreh2023-03-031-0/+1
|
* bin/re: Add working utilityEuAndreh2023-03-031-0/+97
|
* bin/vcs: Update help stringEuAndreh2023-03-031-1/+5
|
* bin/vcs: Add git_ls()EuAndreh2023-03-031-0/+4
|
* bin/vcs: Consistent ordering of VCS typesEuAndreh2023-03-031-6/+6
|
* bin/reconfigure: Early exit when ran as rootEuAndreh2023-03-021-0/+7
|
* bin/reconfigure: Refresh bins(1) cache after updating $PATHEuAndreh2023-03-011-0/+2
|
* bin/player: Decrease synopsis length to 60EuAndreh2023-02-281-2/+2
|
* bin/update: Limit "vcs fetch" to 1 minuteEuAndreh2023-02-281-1/+1
|
* bin/update: Do not fail if last repository failsEuAndreh2023-02-271-1/+1
|
* bin/update: Include $XDG_PREFIX and $PRIV_CONFIG in update listEuAndreh2023-02-271-1/+5
|
* bin/gc: Use heredoc over multiple printf(1) statementsEuAndreh2023-02-271-3/+5
|
* bin/gc: Do not filter /tmp files by type "file"EuAndreh2023-02-271-1/+1
|
* bin/forever: Add -q flagEuAndreh2023-02-271-3/+10
|
* bin/update: Declare $HOSTNAME explicitly (ShellCheck offense)EuAndreh2023-02-271-0/+1
|
* bin/reconfigure: Fix detection if running in a Guix systemEuAndreh2023-02-261-1/+1
|
* Update NixOS channel in update(1) instead of upgrade(1)EuAndreh2023-02-262-1/+7
|
* bin/reconfigure: Use current version of {home,system}.scm filesEuAndreh2023-02-261-3/+3
|
* git mv bin/upgrade bin/reconfigureEuAndreh2023-02-261-4/+4
|
* bin/upgrade: Fix call to timeoutEuAndreh2023-02-261-1/+1
| | | | | The error message was: timeout: impossible d'exécuter la commande « -- »: Aucun fichier ou dossier de ce type
* bin/vcs: Fetch from all remotes by defaultEuAndreh2023-02-261-1/+1
|
* bin/aux: Add semi-working utilityEuAndreh2023-02-231-0/+82
|
* bin/: Cleanup temp file before exitEuAndreh2023-02-237-5/+13
|
* bin/cl: Use uuid(1), tmpname(1) and mkstemp(1) from $PATHEuAndreh2023-02-231-16/+0
|
* bin/print: Use mkdtemp from $PATHEuAndreh2023-02-231-8/+0
|
* bin/gc: Use early return on gc_docker()EuAndreh2023-02-221-8/+10
|
* bin/gc: GC Guix for root userEuAndreh2023-02-221-2/+6
|
* bin/gc: Do Nix GC tooEuAndreh2023-02-221-3/+24
|
* bin/menu: Disable clipmenu when copying passwordsEuAndreh2023-02-221-0/+2
|
* bin/menu: Remove extra colon in display stringEuAndreh2023-02-221-1/+1
|
* Fix f() and g() functions, with help of remembering(1) and highlight(1)EuAndreh2023-02-211-0/+91
|
* bin/upgrade: Restrict upgrade to up-to 2 hoursEuAndreh2023-02-201-1/+4
|
* Use "player synopsis" for MPRIS status stringEuAndreh2023-02-203-30/+34
|
* bin/wms: Use player(1) over accessing the cache fileEuAndreh2023-02-201-1/+1
|
* bin/check: Add "Examples" section to the help stringEuAndreh2023-02-191-0/+12
|
* bin/upgrade: Explicitly define $HOSTNAMEEuAndreh2023-02-171-1/+3
|
* bin/upgrade: Do some ugly ifs to decide what to upgradeEuAndreh2023-02-171-4/+15
|
* bin/li: Assert $IMAGE dir exists before trying to write to itEuAndreh2023-02-171-0/+3
|
* Remove all code referring to backlight tweakingEuAndreh2023-02-171-12/+0
|
* bin/: Use explicit "--" separator for assert-arg usagesEuAndreh2023-02-1722-34/+34
| | | | | | | | | | | | | | In order to prevent legitimate cases to fail as errors, such as: NUM='-10' eval "$(assert-arg "$NUM" '-n NUM')" To prevent assert-arg(1) from treating "-10" as the options "-1 and -0, they need to be put after the "--" separator. This way, all usages of assert-arg(1) that had its first argument as a variable were adapted, and the usage and examples of assert-arg itself were updated to encourage this best practice.