You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a temporary solution, symbolic links can be used to move the downloads directory to another location. Here is a bash script that does so.
#!/bin/bashset -euo pipefail
declare old_location="$HOME/.local/share/QuranCompanion"# NOTE: Modify this. Data will be in /path/to/new/dir/QuranCompaniondeclare new_location="/path/to/new/dir"
[[ -L"$old_location" ]] &&echo"'$old_location' is a symlink already!"&&exit 1
[[ !-d"$old_location" ]] &&echo"'$old_location' is not a directory!"&&exit 1
mv "$old_location""$new_location"
ln -s "$new_location/QuranCompanion""$old_location"
The feature request
أريد خاصية اختيار مكان التحميلات
Proposed solution
لتوفير المساحة في الـ root directory
The text was updated successfully, but these errors were encountered: