https://bugs.kde.org/show_bug.cgi?id=515148

--- Comment #1 from [email protected] ---
## Adendum to my additional info:

I updated the script to touch both directories which seems to work as a
temporary solution if this bug is not fixed and others have a similar issue.
Since the whatever folder is being watched is unknown and i have no interest in
storing state, touching both seems to work just fine. Not sure what issues this
could present if there were say 100 folders but I doubt anyone would have that
many this very specific use case.

```bash
#!/bin/bash
target=$(readlink -f $HOME/Desktop)
desktop="${HOME}/Desktop"
desktop1="${HOME}/Desktop1"
desktop2="${HOME}/Desktop2"

# rm $HOME/Desktop
if [ "$target" = "$desktop1" ]; then
    ln -sfn "$desktop2" "$desktop"
else
    ln -sfn "$desktop1" "$desktop"
fi

touch "$desktop1"
touch "$desktop2"
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to