Existe uma maneira de iniciar o protetor de tela clicando em algo?

1

Não consigo suspender meu laptop Kubuntu 14.04.2 porque, quando eu acordo do modo de suspensão, o KDE não funciona. Então, em vez de colocar meu laptop para dormir, deixei a tela ficar preta após 10 minutos de inatividade. Quero disparar a tela para desligar clicando em um botão ou em um ícone. Existe algum comando bash que eu possa executar para desligar a tela? E quando eu movo o mouse ou digito uma letra no teclado, a tela volta? Qualquer ajuda é muito apreciada! Obrigado por ler e responder!

    
por Gavin C. Stewart 20.03.2015 / 04:52

1 resposta

2

Desligue a tela

A exibição pode ser desativada por um comando:

xset dpms force off

Sobre o comando - man xset:

DESCRIPTION
       This program is used to set various user preference options of the display.


       -dpms   The -dpms option disables DPMS (Energy Star) features.

       +dpms   The +dpms option enables DPMS (Energy Star) features.

       dpms flags...
               The dpms option allows the DPMS (Energy Star) parameters to be set.  The option can take  up  to
               three  numerical values, or the 'force' flag followed by a DPMS state.  The 'force' flags forces
               the server to immediately switch to the DPMS state specified.  The DPMS  state  can  be  one  of
               'standby',  'suspend', 'off', or 'on'.  When numerical values are given, they set the inactivity
               period (in units of seconds) before the three modes are activated.  The first value given is for
               the  'standby'  mode, the second is for the 'suspend' mode, and the third is for the 'off' mode.
               Setting these values implicitly enables the DPMS features.  A value of zero disables a  particu‐
               lar mode.

Ativar o protetor de tela / armário

O protetor de tela / bloqueio do KDE pode ser ativado pelo comando:

qdbus org.kde.ksmserver /ScreenSaver SetActive true

O comando iniciará o protetor de tela ou o bloqueio, dependendo das configurações do usuário. Configurações do Sistema KDE > Exibir e monitorar > Bloqueio de tela.

Sobreoqdbus-manqdbus:

NAMEqdbus-acommunication-interfaceforqt-basedapplicationsSYNOPSISqdbus[--system][--literal][servicename][path][method][args]DESCRIPTIONqdbusprovidesaninterfacetoQt-basedapplicationscommunicatingoverD-Bus.Seehttp://www.freedesk‐top.org/software/dbus/formoreinformationaboutthebigpicture.Bydefaultqdbuswilllistallservicenamesofservicesthatarerunningandyoucanmanipulateatthemoment.Youcanalsomanipulateandrunseveraltypesofmethodsforeachdbus-enabledapplication.

Mais: link

Comando para o botão

O KDE tem o editor de menu: link

Após o comando ter um botão de ativação, o botão pode ser transferido do menu do KDE para a área de trabalho ou para o painel.

A alternativa é adicionar um widget de plasma - Interruptor On / Off: link

e adicione o widget de plasma à área de trabalho / painel.

BináriosdoPPAdoUbuntu: link

    
por user26687 20.03.2015 / 11:59