Page 2273 of 2348 FirstFirst ... 127317732173222322632271227222732274227522832323 ... LastLast
Results 22,721 to 22,730 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #22721
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    @ Petro Dawg

    Nice stuff .. I don't have a battery ... so I snipped that wallpaper.
    Thanks
    Here is the full image if you want it...

    https://farm8.staticflickr.com/7395/...b36b9356_o.jpg
    Last edited by Petro Dawg; April 12th, 2014 at 08:43 PM.
    Who's Awesome? You're Awesome.

  2. #22722
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Petro Dawg View Post
    Here is the full image if you want it...

    https://farm8.staticflickr.com/7395/...b36b9356_o.jpg
    Thanks.

  3. #22723
    Join Date
    Mar 2014
    Beans
    2

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Petro Dawg View Post
    Here is the full image if you want it...

    https://farm8.staticflickr.com/7395/...b36b9356_o.jpg
    great work, that image is really stunning...

  4. #22724
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by noah6 View Post
    great work, that image is really stunning...
    Don't thank me, all I did was scour the web and find it; however after looking at it closely I can see where someone (besides me) messed with it in GIMP (or Photoshop). The imperfections kinda ruined it for me once I saw them.

    The one below seems virtually untouched and a sports a different color scheme...



    Does anyone know "what" or "who" this is a picture of? The first one to correctly name it gets the imaginary grand prize of 100 Conky points. I know now; and I am rather surprised that I like it anyway.

    I'm back on Ubuntu (14.04 and still beta at the moment), and it's killing Mint in performance on my machine. I get ~2 more hours of battery life, and temps run about 5 to 10°C lower.

    I'll post my new Conky, once it's "completed" again. Now running into new Conky background issues that I didn't have in Ubuntu 12.04; if it ain't one thing, its another
    Last edited by Petro Dawg; April 15th, 2014 at 04:39 AM.
    Who's Awesome? You're Awesome.

  5. #22725
    Join Date
    Mar 2014
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Pokemon haunter.
    Attached Images Attached Images
    Last edited by grumblebum2; April 15th, 2014 at 04:49 AM.

  6. #22726
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by grumblebum2 View Post
    Pokemon haunter.
    Well, I guess that's 100 Conky Points!

  7. #22727
    Join Date
    Mar 2014
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Point taken...

  8. #22728
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by grumblebum2 View Post
    Pokemon haunter.
    I didn't figure it would take too long before someone got it.

    Congratulations!!!

    conky.png
    title-1024x456.jpg
    Last edited by Petro Dawg; April 15th, 2014 at 12:31 PM.
    Who's Awesome? You're Awesome.

  9. #22729
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Went back to my usual Ubuntu background...



    I'm only able to use "override" window type in Ubuntu 14.04, so I have to have to set own_window_colour to black to reasonably match my background.

    "Normal" window type displays Conky over any open application which is annoyingly unusable. "Desktop" window type disappears anytime I click on the desktop. So any suggestions how I might get a transparent background now?

    My configuration settings are currently set as...

    Code:
    #conky performance settings
      update_interval 1
      total_run_times 0
      cpu_avg_samples 4
      no_buffers yes 
      double_buffer yes
      override_utf8_locale yes
      text_buffer_size 4352
    
    #overall position of conky window
      alignment mr
      gap_x 32
      gap_y 0
      minimum_size 185 200
      maximum_width 185
    
    
    #overall appearance of window
      own_window yes
      own_window_type override
      own_window_transparent yes
      own_window_hints undecorated,above,sticky,skip_taskbar,skip_pager
      draw_borders no
      own_window_colour black
      own_window_argb_visual yes
      own_window_argb_value 150
      stippled_borders 0
    
    #default text apperance
      use_xft yes
      xftalpha 1
      xftfont Alfios:size=12
      default_color E5E5E5 #E2D6C8 #FFFFFF 
      draw_shades 1
      draw_outline no
      default_shade_color black
      default_outline_color black 
      uppercase no
    
    
    #border around graphs
      draw_graph_borders no
    
    
    #colors 
      color1 67ECFD #main headings
      color2 FDAC5D #arrow down
      color3 FDAC5D #arrow up
      color5 4EA8CB #subheadings
      color9 217261 #dot
      color0 BCEBFF #6FC73C #bars
    
    TEXT
    Yes, I know most of the own_window settings are disregarded with "override" option.
    Who's Awesome? You're Awesome.

  10. #22730
    Join Date
    Mar 2014
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Hi Petro Dawg,
    Looking at your config in own_window_hints you have "above" set.
    own_window_type normal uses these hints while
    own_window_type override ignores these hints.

    Code:
    own_window_type normal
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    own_window_transparent no
    own_window_argb_visual yes
    own_window_argb_value 150
    should work fine to set a degree of transparency.

    When own_window_transparent is set to yes the window is always fully transparent no matter the own_window_argb_value.
    Last edited by grumblebum2; April 16th, 2014 at 04:14 AM.

Page 2273 of 2348 FirstFirst ... 127317732173222322632271227222732274227522832323 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •