diff options
| author | iceyrazor <iceyrazor@mailfence.com> | 2026-06-10 10:34:14 -0500 |
|---|---|---|
| committer | iceyrazor <iceyrazor@mailfence.com> | 2026-06-10 10:34:14 -0500 |
| commit | 69688e0ca9a100d4041173b4bc75262148fa4ff8 (patch) | |
| tree | 73a69d10ac5f016dc21625d70d4adc081ad586e5 /env | |
| parent | 2097b0ebfdd07ae7a8295c26703d8d88ee7a5f8f (diff) | |
Squashed commit of the following: test fix
Diffstat (limited to 'env')
| -rwxr-xr-x | env/.config/.profile | 2 | ||||
| -rwxr-xr-x | env/.local/bin/scripts/dmount | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/env/.config/.profile b/env/.config/.profile index 3199e80..e4dd27e 100755 --- a/env/.config/.profile +++ b/env/.config/.profile @@ -38,7 +38,7 @@ export DIAGRAM_PLANTUML_CLASSPATH=/usr/lib/ruby/gems/3.4.0/gems/asciidoctor-diag alias fukn="sudo $@" -which doas && alias fukn="doas $@" +which doas > /dev/null && alias fukn="doas $@" alias ls='ls --color=auto' alias lss="fukn du -ahd 1 | sort -h" diff --git a/env/.local/bin/scripts/dmount b/env/.local/bin/scripts/dmount index 863c35f..1199163 100755 --- a/env/.local/bin/scripts/dmount +++ b/env/.local/bin/scripts/dmount @@ -1,6 +1,6 @@ #!/bin/sh sudo="sudo" -which doas && sudo="doas" +which doas > /dev/null && sudo="doas" umo=0 |
