mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 22:10:48 -05:00
6 lines
128 B
Text
6 lines
128 B
Text
|
#!/bin/bash
|
||
|
|
||
|
RIVER=`ps -C river`
|
||
|
|
||
|
[[ $RIVER != "" ]] && riverctl spawn 'reset' && riverctl exit || echo "River is not running."
|