Skip to content

Commit 7070b32

Browse files
committed
Draft.
1 parent c62b9d6 commit 7070b32

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

_prog/features.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ _setup_vm-wsl2_sequence() {
403403
# https://forum.manjaro.org/t/high-cpu-usage-from-plasmashell-kactivitymanagerd/114305
404404
# DANGER: Unusual. Uses 'rm -rf' directly. Presumed ONLY during dist/OS install .
405405
#wsl -d ubdist sudo -n rm -rf /home/user/.local/share/kactivitymanagerd/resources/*
406-
#wsl -d ubdist /home/user/ubDistBuild/_lib/ubiquitous_bash/_lib/kit/install/cloud/cloud-init/zRotten/zMinimal/rotten_install.sh _custom_kde-limited
406+
wsl -d ubdist /home/user/ubDistBuild/_lib/ubiquitous_bash/_lib/kit/install/cloud/cloud-init/zRotten/zMinimal/rotten_install.sh _custom_kde-limited
407407

408408

409409
# https://unix.stackexchange.com/questions/253816/restrict-size-of-buffer-cache-in-linux

_prog/installation_prog.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ _setup_install() {
5050

5151
# May be unusual. Unlike other apps, usability of native MSW equivalent for gEDA apps may not be expected.
5252
cmd /c "$currentMSWPath_associate" geda.schematic .sch gschem
53-
cmd /c "$currentMSWPath_associate" geda.pcb .pcb pcb
54-
cmd /c "$currentMSWPath_associate" geda.fp .fp pcb
53+
cmd /c "$currentMSWPath_associate" geda.pcb .pcb /usr/bin/pcb
54+
cmd /c "$currentMSWPath_associate" geda.fp .fp /usr/bin/pcb
5555

5656

5757

ubiquitous_bash.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ _ub_cksum_special_derivativeScripts_contents() {
3636
#export ub_setScriptChecksum_disable='true'
3737
( [[ -e "$0".nck ]] || [[ "${BASH_SOURCE[0]}" != "${0}" ]] || [[ "$1" == '--profile' ]] || [[ "$1" == '--script' ]] || [[ "$1" == '--call' ]] || [[ "$1" == '--return' ]] || [[ "$1" == '--devenv' ]] || [[ "$1" == '--shell' ]] || [[ "$1" == '--bypass' ]] || [[ "$1" == '--parent' ]] || [[ "$1" == '--embed' ]] || [[ "$1" == '--compressed' ]] || [[ "$0" == "/bin/bash" ]] || [[ "$0" == "-bash" ]] || [[ "$0" == "/usr/bin/bash" ]] || [[ "$0" == "bash" ]] ) && export ub_setScriptChecksum_disable='true'
3838
export ub_setScriptChecksum_header='2591634041'
39-
export ub_setScriptChecksum_contents='3755845675'
39+
export ub_setScriptChecksum_contents='1645810846'
4040

4141
# CAUTION: Symlinks may cause problems. Disable this test for such cases if necessary.
4242
# WARNING: Performance may be crucial here.
@@ -30251,6 +30251,14 @@ _setupUbiquitous_accessories_here-nixenv-bashrc() {
3025130251

3025230252
[[ -e "$HOME"/.nix-profile/etc/profile.d/nix.sh ]] && . "$HOME"/.nix-profile/etc/profile.d/nix.sh
3025330253

30254+
# WARNING: Binaries from Nix should not be prepended to Debian PATH, as they may be incompatible with other Debian software (eg. incorrect Python version).
30255+
# Scripts that need to rely preferentially on Nix binaries should detect this situation, defining and calling an appropriate wrapper function.
30256+
if [[ "\$PATH" == *"nix-profile/bin"* ]]
30257+
then
30258+
export PATH=\$(echo "\$PATH" | sed 's|:'"$HOME"'/.nix-profile/bin||g;s|'"$HOME"'/.nix-profile/bin:||g')
30259+
export PATH="\$PATH":"$HOME"/.nix-profile/bin
30260+
fi
30261+
3025430262
CZXWXcRMTo8EmM8i4d
3025530263
}
3025630264

@@ -41629,8 +41637,8 @@ _setup_install() {
4162941637

4163041638
# May be unusual. Unlike other apps, usability of native MSW equivalent for gEDA apps may not be expected.
4163141639
cmd /c "$currentMSWPath_associate" geda.schematic .sch gschem
41632-
cmd /c "$currentMSWPath_associate" geda.pcb .pcb pcb
41633-
cmd /c "$currentMSWPath_associate" geda.fp .fp pcb
41640+
cmd /c "$currentMSWPath_associate" geda.pcb .pcb /usr/bin/pcb
41641+
cmd /c "$currentMSWPath_associate" geda.fp .fp /usr/bin/pcb
4163441642

4163541643

4163641644

@@ -44814,7 +44822,7 @@ _setup_vm-wsl2_sequence() {
4481444822
# https://forum.manjaro.org/t/high-cpu-usage-from-plasmashell-kactivitymanagerd/114305
4481544823
# DANGER: Unusual. Uses 'rm -rf' directly. Presumed ONLY during dist/OS install .
4481644824
#wsl -d ubdist sudo -n rm -rf /home/user/.local/share/kactivitymanagerd/resources/*
44817-
#wsl -d ubdist /home/user/ubDistBuild/_lib/ubiquitous_bash/_lib/kit/install/cloud/cloud-init/zRotten/zMinimal/rotten_install.sh _custom_kde-limited
44825+
wsl -d ubdist /home/user/ubDistBuild/_lib/ubiquitous_bash/_lib/kit/install/cloud/cloud-init/zRotten/zMinimal/rotten_install.sh _custom_kde-limited
4481844826

4481944827

4482044828
# https://unix.stackexchange.com/questions/253816/restrict-size-of-buffer-cache-in-linux

0 commit comments

Comments
 (0)