web-dev-qa-db-ja.com

Ubuntuで一時停止するスリープタイマーMATE 16.04 LTS

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

ありがとう、フィリップ

8
Squeezie

端末の使用を気にしない場合は、この方法で実行できます。

実行:sleep 2h 45m 20s && systemctl suspend -i

システムを2時間45分20秒で中断します。

このようなGUIを取得するためのスクリプトを作成しました。

enter image description here

enter image description here

以下のスクリプトの内容をコピーして、ホームディレクトリに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ダブルクリックするだけです。

14
Severus Tux

グラフィカルツールを探している場合は、 qshutdown を試してください。

3
pomsky