Update 4 files

- /home/.chezmoiscripts/universal/run_onchange_after_25-gnome-extension-settings.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_19-gnome-extension-settings.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_45-vmware.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_50-rclone.tmpl
This commit is contained in:
Brian Zalewski 2023-02-05 04:01:40 +00:00
parent d467fcc7fe
commit a599bb9517
3 changed files with 12 additions and 3 deletions

View file

@ -8,6 +8,7 @@
if command -v vmware > /dev/null; then if command -v vmware > /dev/null; then
### Build kernel modules if they are not present ### Build kernel modules if they are not present
if [ ! -f "/lib/modules/$(uname -r)/misc/vmmon.ko" ] || [ ! -f "/lib/modules/$(uname -r)/misc/vmnet.ko" ]; then if [ ! -f "/lib/modules/$(uname -r)/misc/vmmon.ko" ] || [ ! -f "/lib/modules/$(uname -r)/misc/vmnet.ko" ]; then
### Build VMWare host modules
logg info 'Building VMware host modules' logg info 'Building VMware host modules'
if sudo vmware-modconfig --console --install-all; then if sudo vmware-modconfig --console --install-all; then
logg success 'Built VMWare host modules successfully with `sudo vmware-modconfig --console --install-all`' logg success 'Built VMWare host modules successfully with `sudo vmware-modconfig --console --install-all`'
@ -54,6 +55,14 @@ if command -v vmware > /dev/null; then
else else
logg info '/usr/lib/vmware/isoimages/darwin.iso is already present on the system so VMware macOS unlocking will not be performed' logg info '/usr/lib/vmware/isoimages/darwin.iso is already present on the system so VMware macOS unlocking will not be performed'
fi fi
### Start / enable VMWare USB Arbitrator
if command -v vmware-usbarbitrator.service > /dev/null; then
sudo systemctl enable vmware-usbarbitrator.service
sudo systemctl restart vmware-usbarbitrator.service
else
logg warn '`vmware-usbarbitrator` does not exist in the PATH'
fi
else else
logg info 'VMware host modules are present' logg info 'VMware host modules are present'
fi fi

View file

@ -49,10 +49,10 @@ if command -v rclone > /dev/null; then
### Add user Rclone mount ### Add user Rclone mount
logg info 'Adding user S3 rclone mount (available at ~/.local/mnt/s3)' logg info 'Adding user S3 rclone mount (available at ~/.local/mnt/s3)'
sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/rclone/s3-user.service" "/etc/systemd/system/${USER}-s3.service" sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/rclone/s3-user.service" "/etc/systemd/system/s3-${USER}.service"
logg info 'Enabling / restarting the S3 user mount' logg info 'Enabling / restarting the S3 user mount'
sudo systemctl enable "${USER}-s3" sudo systemctl enable "s3-${USER}"
sudo systemctl restart "${USER}-s3" sudo systemctl restart "s3-${USER}"
fi fi
else else
logg info '`rclone` is not available' logg info '`rclone` is not available'