9 lines
95 B
Bash
9 lines
95 B
Bash
#!/bin/bash
|
|
|
|
if [[ $(makoctl list) == '' ]]; then
|
|
makoctl restore
|
|
else
|
|
makoctl dismiss
|
|
fi
|
|
|