Auto iniciar compton no Lubuntu 16.04

0

Desculpe pelo meu mau Inglês Meu problema é tela rasgando em Lubuntu 16.04, minha GPU é Intel HD gráfico Eu instalo compton e este comando me ajuda %código% Mas eu quero auto iniciar o compton, então eu pesquiso na Internet por isso. Eu edito o arquivo $ compton -b --vsync opengl adicionando esta linha /etc/xdg/lxsession/Lubuntu/autostart Mas isso não funciona, alguém pode me ajudar?

$ which compton
/usr/bin/compton

$ sudo systemctl status mycompton.service
● mycompton.service - compton autostart script
   Loaded: loaded (/etc/systemd/system/mycompton.service; enabled; vendor preset: enabled)
   Active: inactive (dead) (Result: exit-code) since T5 2017-09-07 15:59:44 ICT; 5s ago
  Process: 6342 ExecStart=/usr/bin/compton -b --vsync opengl (code=exited, status=1/FAILURE)

Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Unit entered failed state.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Failed with result 'exit-code'.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Service hold-off time over, scheduling restart.
Th09 07 15:59:44 GaCon systemd[1]: Stopped compton autostart script.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Start request repeated too quickly.
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.

$ journalctl -xe
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mycompton.service has finished shutting down.
Th09 07 15:59:44 GaCon systemd[1]: Starting compton autostart script...
-- Subject: Unit mycompton.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mycompton.service has begun starting up.
Th09 07 15:59:44 GaCon compton[6342]: session_init(): Can't open display.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Control process exited, code=exited status=1
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
-- Subject: Unit mycompton.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mycompton.service has failed.
-- 
-- The result is failed.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Unit entered failed state.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Failed with result 'exit-code'.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Service hold-off time over, scheduling restart.
Th09 07 15:59:44 GaCon systemd[1]: Stopped compton autostart script.
-- Subject: Unit mycompton.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mycompton.service has finished shutting down.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Start request repeated too quickly.
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
-- Subject: Unit mycompton.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mycompton.service has failed.
-- 
-- The result is failed.
Th09 07 15:59:50 GaCon sudo[6344]:      lhv : TTY=pts/0 ; PWD=/home/lhv ; USER=root ; COMMAND=/bin/systemctl status mycompton.service
Th09 07 15:59:50 GaCon sudo[6344]: pam_unix(sudo:session): session opened for user root by (uid=0)
Th09 07 15:59:50 GaCon sudo[6344]: pam_unix(sudo:session): session closed for user root
Th09 07 16:00:14 GaCon com.canonical.indicator.application[974]: (process:1199): indicator-application-service-WARNING **: Application already exists, re-requesting pro
lines 2628-2669/2669 (END)
    
por Việt Lê Huy 07.09.2017 / 10:14

1 resposta

0

Você pode usar um serviço systemd simples para iniciá-lo automaticamente:

  1. Crie um arquivo de serviço:

    sudo nano /etc/systemd/system/mycompton.service
    
  2. Adicione as seguintes configurações:

    [Unit]
    Description=compton autostart script
    After=network.target
    
    [Service]
    Type=forking
    ExecStart=/usr/bin/compton -b --vsync opengl
    Restart=always
    
    [Install]
    WantedBy=multi-user.target
    
  3. Inicie e ative o serviço de computador:

    sudo systemctl start mycompton
    sudo systemctl enable mycompton
    
  4. Verifique o status:

    systemctl status mycompton
    
  5. Pare com:

    sudo systemctl stop mycompton
    

Nota:

Substitua a linha /usr/bin/coompton pelo resultado de which compton , se diferente da minha própria entrada.

    
por George Udosen 07.09.2017 / 10:38