EliverLara / Juno

GTK themes inspired by epic vscode themes
GNU General Public License v3.0
462 stars 23 forks source link

Fix symbolic links to use relative locations rather than absolute #27

Closed smac89 closed 3 years ago

smac89 commented 3 years ago

The following files:

assets/maximize_unfocused.png
assets/min_unfocused.png

are using absolute paths and therefore when Juno is installed, these are not properly resolved. Please use relative (-r) paths for creating symbolic links.

cd /home/lara/github/Juno/assets
ln -fsr /home/lara/github/Juno/assets/maximize_unfocused.png /home/lara/github/Juno/assets/close_unfocused.png
ln -fsr /home/lara/github/Juno/assets/min_unfocused.png /home/lara/github/Juno/assets/close_unfocused.png

Thanks

smac89 commented 3 years ago

Looks like this issue already had a PR (#8) since last year.

EliverLara commented 3 years ago

Thanks I've merged that PR.