15 lines
501 B
Bash
15 lines
501 B
Bash
#!/bin/bash
|
|
# xrescuebru.sh
|
|
# Rescue CD Backup & Restore Utility graphical client start
|
|
# version 7.2.5
|
|
# Rod Wright 1/19/2024
|
|
# Refer to CHANGELOG file for details.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
xset dpms 0 0 0
|
|
/root/rescuebru/updatecapacity.sh &
|
|
sleep 1
|
|
/root/rescuebru/showcapacitywindow.sh &
|
|
sleep 2
|
|
/usr/bin/xfce4-terminal --disable-server --hide-menubar --hide-toolbar --title="RescueBRU" --geometry=80x25+0+0 -e /root/rescuebru/rescuebru.sh &
|