-
Docker bind mounts does not have assets and themes alongside with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It is intended this way, following best practices to keep things tidy and respect your space. The goal is to minimize any interference with your own mounted directory, putting only place the essential configuration file needed for the app to run. However, you can download assets and themes from data folder manually and put them into their respective folders. I also pushed some scripts into tools directory to do this automatically. Caution This is for lazy users such as me, who creates scripts to do their tedious stuff. Use at your own risk. If you modify unrelated lines or do some custom stuff, you might cause problems. I suggest you to read the powershell source and bash source scripts beforehand. How to use:bash
curl: bash <(curl -s https://raw.githubusercontent.com/excalith/excalith-start-page/main/tools/download_assets.sh) --assets true --themes bushido catppuccin-mocha onedark wget: bash <(wget -qO- https://raw.githubusercontent.com/excalith/excalith-start-page/main/tools/download_assets.sh) --assets true --themes bushido catppuccin-mocha onedark powershell
Tip If you are getting errors regarding execution policies, either download the script and run locally or download required items manually. # Modify the params as you wish
$params = @{
# Set assets to false if you do not want to download the assets
assets = $true
# Add themes to the list if you want to download them
themes = "bushido", "catppuccin-mocha", "onedark"
}
#================================
# Do not modify below this line
#================================
# Set script content
$scriptContent = (Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/excalith/excalith-start-page/main/tools/download_assets.ps1').Content
# Construct a custom script block to handle parameters
$scriptBlock = [scriptblock]::Create("$scriptContent")
# Invoke the modified script with your parameters
& $scriptBlock @params |
Beta Was this translation helpful? Give feedback.
It is intended this way, following best practices to keep things tidy and respect your space. The goal is to minimize any interference with your own mounted directory, putting only place the essential configuration file needed for the app to run.
However, you can download assets and themes from data folder manually and put them into their respective folders.
I also pushed some scripts into tools directory to do this automatically.
Caution
This is for lazy users such as me, who creates scripts to do their tedious stuff. Use at your own risk. If you modify unrelated lines or do some custom stuff, you might cause problems. I suggest you to read the powershell source and bash source scripts b…