Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic: [DE] Frage zu conky  (Read 1666 times)

Offline harley-peter

  • User
  • Posts: 1.027
[DE] Frage zu conky
« on: 2015/04/28, 20:37:45 »
Auf der Installations ISO (Xfce) war ein schickes transparentes conky auf dem Desktop zu sehen das leider bei der Installation verloren ging. Ich habe einen Ordner .conky im user Verzeichnis exakt so wie bei der ISO. Ein manueller Start von conky bringt nur die rudimentäre Anzeige aus /etc/conky/conky.conf zur Ansicht. Wenn ich die Dateien conkyrc und clock01_rings.lua aus dem Ordner in das Hauptverzeichnis kopiere dann kommt zwar so etwas ähnliches zur Anzeige das nicht zusammen passt. Ich hätte aber gerne das Original. Hat jemand einen Tip bevor ich da wild rumprobiere?

Was besagt die Datei conkyrc2core?

Offline melmarker

  • User
  • Posts: 2.799
    • g-com.eu
Re: Frage zu conky
« Reply #1 on: 2015/04/28, 21:05:57 »
ich würds mal mit man conky probieren - und dann mal nach $HOME/.conkyrc und so was suchen - auf jeden Fall könnte es helfen, wenn man conky beim Starten mitteilt, welche Konfiguration er benutzen soll
Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety. (Benjamin Franklin, November 11, 1755)
Never attribute to malice that which can be adequately explained by stupidity. (Hanlons razor)

Offline harley-peter

  • User
  • Posts: 1.027
Re: Frage zu conky
« Reply #2 on: 2015/04/28, 21:19:19 »
Habe ich mir schon angeschaut aber lt. der Manpage kann man dem Befehl conky keinen Parameter mitgeben wo er sich seine Konfiguration suchen soll. Mich wundert nur dass es bei anscheinend gleicher Konstellation beim Booten vom Stick funktioniert und bei der installierten Version nicht mehr. Notfalls muss ich halt selbst basteln was ich mir ersparen wollte.  ;)

Online towo

  • Administrator
  • User
  • *****
  • Posts: 2.948
Re: Frage zu conky
« Reply #3 on: 2015/04/28, 21:29:12 »
ich tät ja einfach mal


alt + F2  ==> start-conky


versuchen.
Ich gehe nicht zum Karneval, ich verleihe nur manchmal mein Gesicht.

Offline harley-peter

  • User
  • Posts: 1.027
Re: Frage zu conky
« Reply #4 on: 2015/04/28, 21:38:47 »
Danke towo das funktioniert. Ich hatte es einfach auf der Konsole mit conky versucht. Nur zum Lernen: Was wird bei start-conky anders gemacht und auf welche Konfiguration greift conky dann zu?

Online towo

  • Administrator
  • User
  • *****
  • Posts: 2.948
Re: Frage zu conky
« Reply #5 on: 2015/04/28, 21:41:24 »
Danke towo das funktioniert. Ich hatte es einfach auf der Konsole mit conky versucht. Nur zum Lernen: Was wird bei start-conky anders gemacht und auf welche Konfiguration greift conky dann zu?
Wie wäre es, einfach in das script reinzugucken?
Ich gehe nicht zum Karneval, ich verleihe nur manchmal mein Gesicht.

Offline melmarker

  • User
  • Posts: 2.799
    • g-com.eu
Re: Frage zu conky
« Reply #6 on: 2015/04/28, 21:43:22 »
Code: [Select]
cat /usr/bin/start-conky                                                                                         
#!/bin/sh                                                                                                                           
# xfce conky starter                                                                                                                 
                                                                                                                                     
if [ ! -d $HOME/.conky ]; then                                                                                                       
    mkdir -p $HOME/.conky                                                                                                           
    cp -rf /usr/share/siduction-settings-conky/profiles/conky/* $HOME/.conky/                                                       
fi                                                                                                                                   
pkill -9 -x conky                                                                                                                   
sleep 10s                                                                                                                           
cd "$HOME/.conky/4 & 2 core blue"
conky -c "$HOME/.conky/4 & 2 core blue/conkyrc2core" &

Optionen:
Code: [Select]
conky(1)                                                                                                                 conky(1)

NAME
       conky - A system monitor for X originally based on the torsmo code, but more kickass. It just keeps on given'er. Yeah.

SYNOPSIS
       conky [ options ]

DESCRIPTION
       Conky  is a system monitor for X originally based on torsmo. Since its inception, Conky has changed significantly from its
       predecessor, while maintaining simplicity and configurability. Conky can display just about anything, either on your  root
       desktop  or in its own window. Not only does Conky have many built-in objects, it can also display just about any piece of
       information by using scripts and other external programs.

       Conky has more than 250 built in objects, including support for a plethora of OS stats (uname, uptime, CPU usage, mem  us‐
       age,  disk  usage,  "top" like process stats, and network monitoring, just to name a few), built in IMAP and POP3 support,
       built in support for many popular music players (MPD, XMMS2, BMPx, Audacious), and much much more.  Conky can display this
       info either as text, or using simple progress bars and graph widgets, with different fonts and colours.

       We are always looking for help, whether its reporting bugs, writing patches, or writing docs. Please use the facilities at
       SourceForge to make bug reports, feature requests, and submit patches, or stop by #conky on irc.freenode.net if  you  have
       questions or want to contribute.

       Thanks for your interest in Conky.

COMPILING
       For  users  compiling from source on a binary distro, make sure you have the X development libraries installed (Unless you
       provide configure with "--disable-x11"). This should be a package along the lines of "libx11-dev"  or  "xorg-x11-dev"  for
       X11  libs, and similar "-dev" format for the other libs required (depending on your configure options). You should be able
       to see which extra packages you need to install by reading errors that you get from './configure'. You can  enable/disable
       stuff by giving options to configure, but be careful with disabling. For example: with --disable-math you won't get errors
       but logarithmic graphs will be normal graphs and gauges will miss their line.

       Conky has (for some time) been available in the repositories of most popular distributions. Here are some installation in‐
       structions for a few:

       Gentoo users -- Conky is in Gentoo's Portage...  simply use "emerge app-admin/conky" for installation.

       Debian, etc. users -- Conky should be in your repositories, and can be installed by doing "aptitude install conky".

       Example  to  compile and run Conky with all optional components (note that some configure options may differ for your sys‐
       tem):

       sh autogen.sh # Only required if building from the git repo

       ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share  --sysconfdir=/etc  --lo‐
       calstatedir=/var/lib --disable-own-window --enable-audacious[=yes|no|legacy] --enable-bmpx --disable-hddtemp --disable-mpd
       --enable-xmms2 --disable-portmon --disable-network --enable-debug --disable-x11 --disable-double-buffer  --disable-xdamage
       --disable-xft

       make

       make install # Optional

       src/conky

       Conky has been tested to be compatible with C99 C, however it has not been tested with anything other than gcc, and is not
       guaranteed to work with other compilers.

YOU SHOULD KNOW
       Conky is generally very good on resources. That said, the more you try to make Conky do, the more resources it is going to
       consume.

       An  easy  way  to force Conky to reload your ~/.conkyrc: "killall -SIGUSR1 conky". Saves you the trouble of having to kill
       and then restart. You can now also do the same with SIGHUP.

OPTIONS
       Command line options override configurations defined in configuration file.

       -v | -V | --version
              Prints version and exits

       -q | --quiet
              Run Conky in 'quiet mode' (ie. no output)

       -D | --debug
              Increase debugging output, ie. -DD for more debugging

       -a | --alignment= ALIGNMENT
              Text alignment on screen, {top,bottom,middle}_{left,right,middle} or none. Can also be abbreviated with first chars
              of position, ie. tr for top_right.

       -b | --double-buffer
              Use double buffering (eliminates "flicker")

       -c | --config= FILE
              Config file to load instead of $HOME/.conkyrc

       -C | --print-config
              Print builtin default config to stdout. See also the section EXAMPLES for more information.

       -d | --daemonize
              Daemonize Conky, aka fork to background

       -f | --font= FONT
              Font to use

       -h | --help
              Prints command line help and exits

       -o | --own-window
              Create own window to draw

       -t | --text= TEXT
              Text to render, remember single quotes, like -t ' $uptime '

       -p | --pause= SECONDS
              Time to pause before actually starting Conky

       -u | --interval= SECONDS
              Update interval

       -w | --window-id= WIN_ID
              Window id to draw

       -X | --display= DISPLAY
              X11 display to use

       -x X_COORDINATE
              X position

       -y Y_COORDINATE
              Y position

       -i COUNT
              Number of times to update Conky (and quit)

CONFIGURATION SETTINGS
Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety. (Benjamin Franklin, November 11, 1755)
Never attribute to malice that which can be adequately explained by stupidity. (Hanlons razor)

Offline harley-peter

  • User
  • Posts: 1.027
Re: Frage zu conky
« Reply #7 on: 2015/04/28, 21:49:04 »
Jo manchmal wäre es durchaus angebracht zuerst das eigene Gehirn einzuschalten bevor man hier einen Schnellschuss postet ....  :-[
Danke!