feat: added prop dyn support to more widgets

This commit is contained in:
Byson94
2025-08-17 12:28:53 +05:30
parent 0a446b4175
commit 2e57d8cc7d
4 changed files with 267 additions and 126 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
while true; do
# read the last line
if [ -s /tmp/selected_emoji.txt ]; then
tail -n 1 /tmp/selected_emoji.txt
# truncate the file after reading
: > /tmp/selected_emoji.txt
fi
sleep 0.1
done