[Enhancement]: Remove delay for Screenshots
bugenhancement
### Already reported ? *
- [x] I have searched the existing open and closed request.
### Description
I just found out that the screenshot script sometimes waits for a long time while grim already did its job.
Looks like they're waiting for pipewire to finish playing the sound
https://github.com/JaKooLit/Hyprland-Dots/blob/main/config/hypr/scripts/ScreenShot.sh#L44
### Proposed Solution
Put the sound execution in the Background
```diff
- "${sDIR}/Sounds.sh" --screenshot
+ "${sDIR}/Sounds.sh" --screenshot &
```
关闭于 2026-03-07 4 条评论