xx分後にコンピューターを一時停止する方法はありますか(GUIを使用するのが最適です)。 Ubuntu MATE 16.04 LTSを使用しており、電源管理を含むすべてを試しました。
ありがとう、フィリップ
端末の使用を気にしない場合は、この方法で実行できます。
実行:sleep 2h 45m 20s && systemctl suspend -i
システムを2時間45分20秒で中断します。
このようなGUIを取得するためのスクリプトを作成しました。
以下のスクリプトの内容をコピーして、ホームディレクトリにfast_suspend.sh
として保存します。
#!/bin/bash
# Tested on : Ubuntu 16.04 LTS
# Date : 19-May-2016
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
set -- `zenity --title="Scheduled-action" \
--forms \
--text='<span foreground="green">Enter Relative time</span>' \
--add-entry="hours" \
--add-entry="min" -\
--add-entry="sec" \
--separator=".0 " \
--add-combo=action --combo-values="poweroff|restart|suspend|logout"`
hrs=$1
min=$2
sec=$3
action=$4
time=$hrs\h\ $min\m\ $sec\s
#Checking validity of the input :
re='^[0-9]*([.][0-9]+)?$'
if ! [[ $hrs =~ $re ]] || ! [[ $min =~ $re ]] || ! [[ $sec =~ $re ]]
then
zenity --error \
--title="Invalid Input" \
--text="You have entered an Invalid time! \n\nOnly positive integers supported"
exit 1
fi
case $action in
"poweroff")
zenity --title=Confirm --question \
--text="Your system is about to <span foreground=\"red\">$action</span> in ${hrs%%.*} hours ${min%%.*} minutes ${sec%%.*} seconds. \nAre you sure \?"
if [ $? -eq 0 ]
then
sleep $time && poweroff
else
exit
fi ;;
"restart")
zenity --title=Confirm --question \
--text="Your system is about to <span foreground=\"red\">$action</span> in ${hrs%%.*} hours ${min%%.*} minutes ${sec%%.*} seconds. \nAre you sure \?"
if [ $? -eq 0 ]
then
sleep $time && reboot
else
exit
fi ;;
"suspend")
zenity --title=Confirm --question \
--text="Your system is about to <span foreground=\"red\">$action</span> in ${hrs%%.*} hours ${min%%.*} minutes ${sec%%.*} seconds. \nAre you sure \?"
if [ $? -eq 0 ]
then
sleep $time && systemctl suspend -i
else
exit
fi ;;
"logout")
zenity --title=Confirm --question \
--text="Your system is about to <span foreground=\"red\">$action</span> in ${hrs%%.*} hours ${min%%.*} minutes ${sec%%.*} seconds. \nAre you sure \?"
if [ $? -eq 0 ]
then
sleep $time && gnome-session-quit --logout --no-Prompt
else
exit
fi ;;
esac
さらに、.desktop
ファイルを作成して実行できます。
以下のテキストをコピーして、fast_suspend.desktop
として保存します。
[Desktop Entry]
Type=Application
Terminal=false
Icon=
Name=fast_suspend
Exec=/home/your-user-name/fast_suspend.sh
Name[en_US]=fast_suspend
両方のファイルに実行許可を与えます-実行:
chmod a+x ~/fast_suspend.sh ~/Desktop/fast_suspend.desktop
このウィンドウを再度起動する場合は、デスクトップ上のfast_suspend
をダブルクリックするだけです。
グラフィカルツールを探している場合は、 qshutdown を試してください。