Ubuntu MATE 16.04 LTS でスリープ タイマーを使用してサスペンドする

Ubuntu MATE 16.04 LTS でスリープ タイマーを使用してサスペンドする

xx 分後にコンピューターをサスペンドする方法はありますか (GUI を使用するのが最適です)? 私は Ubuntu MATE 16.04 LTS を使用しており、電源管理を含むすべてを試しました。

ありがとう、フィリップ

答え1

ターミナルを使用しても構わない場合は、この方法で実行できます。

実行する :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デスクトップ上でオンにします。

答え2

グラフィカルツールをお探しの場合は、シャットダウン

関連情報