Excusez moi de revenir vous embêter avec mes questions mais après plusieurs recherches et essais, je n'y arrive pas. En fait, j'ai créé un conky.conf et aussi un fichier conky.desktop (ils sont mis à la fin du message). Bref, le lancement se passe plutôt bien mais lorsque j'arrive sur KDE, j'ai conky qui disparait parfois quand je ferme des applications telles que le terminal ou, par exemple, mon logiciel de messagerie. J'ai l'impression que cela arrive surtout au moment où l'application ouverte (terminal ou l'application que je ferme) est en plein écran. Néanmoins ce n'est pas tout le temps que conky disparait au niveau de ce scénario. Pour ce qui est du problème, Il semblerait qu'il y ait deux interfaces utilisateur au sein de plasma 5: le bureau et le système de fichier. Or, après sa disparition, conky réapparaissant quand je vais cliquer par exemple dans le panneau de choix des applications du tableau de bord, je me demande si ce n'est pas l'interface du bureau qui prend le dessus et par conséquent vire conky lors de la fermeture de l'application ? En effet, conky est déclaré comme 'normal' au sein du fichier conky.conf. Bref, je souhaiterais savoir si vous auriez une idée de comment je pourrais régler ce problème.
Je vous remercie d'avance pour la prise en considération de cette requête.
Cordialement,
Vinz.
Le fichier conky.conf
Code : Tout sélectionner
--vim: ts=4 sw=4 noet ai cindent syntax=lua
--[[
Conky, a system monitor, based on torsmo
Any original torsmo code is licensed under the BSD license
All code written since the fork of torsmo is licensed under the GPL
Please see COPYING for details
Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
Copyright (c) 2005-2012 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
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. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
]]
conky.config = {
alignment = 'top_right',
background = true,
border_width = 1,
cpu_avg_samples = 2,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
use_xft = true,
font = 'DejaVu Sans Mono:size=12',
gap_x = 20,
gap_y = 160,
minimum_height = 5,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window = true,
own_window_class = 'Conky',
own_window_type = 'normal',
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_argb_visual = true,
own_window_transparent = true,
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
show_graph_scale = false,
show_graph_range = false
}
conky.text = [[${offset 30}$nodename - $sysname $kernel sur $machine
${offset 410}${color grey}Démarrage:$color $uptime
${offset 440}${color grey}Fréquence (MHz):$color $freq
${offset 470}${color grey}Usage RAM:$color $mem/$memmax - $memperc% ${membar 4}
${offset 500}${color grey}Usage SWAP:$color $swap/$swapmax - $swapperc%${swapbar 4}
${offset 530}${color grey}Usage CPU:$color $cpu% ${cpubar 4}
${offset 550}${color grey}Processus:$color $processes ${color grey}En cours:$color $running_processes
${offset 570}$hr
${offset 580}${color grey}Système de fichiers:
${offset 595}${color grey} / $color${fs_used /} ${color grey}sur $color${fs_size /} ${fs_bar 6 /}
${offset 595} ${color grey}/home $color${fs_used /home} ${color grey}sur $color${fs_size /home} ${fs_bar 6 /home}
${offset 600}$hr
${offset 610}${color grey}Réseau:
${offset 615} ${color grey}-Ethernet:
${offset 620} ${color grey}Upload:$color ${upspeedf eth0}Kb/s ${color grey}${offset 100}Download:$color ${downspeedf eth0}Kb/s
${offset 620} ${upspeedgraph eth0 50,250 0000ff ff0000 .5} ${downspeedgraph eth0 50,250 0000ff ff0000 .5}
${offset 615} ${color grey}-Wifi:
${offset 620} ${color grey}Upload:$color ${upspeedf wlp4s0}Kb/s ${color grey}${offset 100}Download:$color ${downspeedf wlp4s0}Kb/s
${offset 620} ${upspeedgraph wlp4s0 50,250 0000ff ff0000 .5} ${downspeedgraph wlp4s0 50,250 0000ff ff0000 .5}
${offset 590}$hr
${offset 580}${color lightgrey}NOM:$color ${top name 1}${color lightgrey}PID:$color${top pid 1} ${color lightgrey}CPU%:$color${top cpu 1} ${color lightgrey}MEM%:$color${top mem 1}
${offset 580}${color lightgrey}NOM:$color ${top name 2}${color lightgrey}PID:$color${top pid 2} ${color lightgrey}CPU%:$color${top cpu 2} ${color lightgrey}MEM%:$color${top mem 2}
${offset 580}${color lightgrey}NOM:$color ${top name 3}${color lightgrey}PID:$color${top pid 3} ${color lightgrey}CPU%:$color${top cpu 3} ${color lightgrey}MEM%:$color${top mem 3}
${offset 580}${color lightgrey}NOM:$color ${top name 4}${color lightgrey}PID:$color${top pid 4} ${color lightgrey}CPU%:$color${top cpu 4} ${color lightgrey}MEM%:$color${top mem 4}
]]
Code : Tout sélectionner
[Desktop Entry]
Type=Application
Exec=sh -c "sleep 10;/usr/bin/conky"
Icon=system-run
Name=
StartupNotify=false
Terminal=false