11 lines
237 B
Bash
11 lines
237 B
Bash
#!/bin/bash
|
|
|
|
# Infinite loop to run the command
|
|
while true; do
|
|
echo "Starting nwg-drawer..."
|
|
bin/nwg-drawer -nocats -nofs -ovl -d
|
|
done &
|
|
|
|
|
|
# Return immediately after starting the loop
|
|
echo "The loop is running in the background." |