11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop previous process
|
|
killall nwg-wrapper
|
|
|
|
# Sleep 1s
|
|
sleep 1
|
|
|
|
# Start new process
|
|
nwg-wrapper -s conky_sway.sh -r 2000 -p right -mr 15 -mt 10 -mb 80 &
|