You are Here:
Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section



Lite Tweaks - Suggestions welcomed

Author (Read 146027 times)

0 Members and 3 Guests are viewing this topic.

Re: Lite Cleaner - Suggestions welcomed
« Reply #56 on: September 17, 2014, 12:48:19 PM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
Nice icon! How about the silver or white cleaner on a clear background for  a Xfce dock? Thanks.
Clear? Do you mean with transparent background?

the first is silver, the second one is white
« Last Edit: September 17, 2014, 12:51:26 PM by misko_2083 »
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #55 on: September 17, 2014, 10:33:58 AM »
 

Coastie

  • PayPal Supporter
  • Gold Level Poster
  • *****
  • 656
    Posts
  • Reputation: 53
  • Linux Lite User
    • View Profile

  • CPU: AMD A10-6700 (ASUS M32)

  • MEMORY: 12Gb

  • VIDEO CARD: ADM Radeon HD (integrated)
Nice icon! How about the silver or white cleaner on a clear background for  a Xfce dock? Thanks.


Left Mac OS X for Linux in Jan 2014
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #54 on: September 17, 2014, 08:44:08 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Nice touch there misko, I'll add these to the next version :)
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #53 on: September 17, 2014, 08:04:28 AM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
If google chrome isn't installed, the output will be:
Code: [Select]
du: cannot access ‘/home/linuxlite/.cache/google-chrome/’: No such file or directory"so the script should check if $HOME/.cache/firefox, $HOME/.cache/google-chrome and $HOME/.cache/chromium folders exist.

Code: [Select]
#! /bin/bash
#--------------------------------------------------------------------------------------------------------
# Name: Linux Lite Cleaner
# Description: A GUI tool to easily clean your Linux Lite system.
# Authors: Misko_2083, Jerry Bezencon
# Date: September 16th, 2014
# Website: https://www.linuxliteos.com
#--------------------------------------------------------------------------------------------------------

APTCACHESIZE=$(du -sh /var/cache/apt/archives/ | awk '{print $1}')
TRASHCACHESIZE=$(du -sh $HOME/.local/share/Trash/ | awk '{print $1}')
THUMBCACHESIZE=$(du -sh $HOME/.thumbnails/ | awk '{print $1}')

if [  -d  "$HOME/.cache/mozilla/"  ]; then
FFCACHESIZE=$(du -sh $HOME/.cache/mozilla/ | awk '{print $1}')
else
FFCACHESIZE=$(echo 0)
fi

if [  -d  "$HOME/.cache/google-chrome/" ]; then
GCCACHESIZE=$(du -sh $HOME/.cache/google-chrome/ | awk '{print $1}' )
else
GCCACHESIZE=$(echo nothing)
fi

if [  -d  "$HOME/.cache/chromium/" ]; then
CHRCACHESIZE=$(du -sh $HOME/.cache/chromium/ | awk '{print $1}')
else
CHRCACHESIZE=$(echo nothing)
fi

# I've noticed that the dialog window icon doesn't match the menu icon, next line will fix this
ic="/usr/share/pixmaps/litecleaner.png"

# the other part is the same...
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #52 on: September 17, 2014, 03:51:37 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
I added a -y to the executable, hopefully that should resolve this issue for bobw and others.
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #51 on: September 17, 2014, 03:45:13 AM »
 

bobw

  • Occasional Poster
  • **
  • 85
    Posts
  • Reputation: 19
  • Linux Lite Member
    • View Profile
I'm getting the same error message when I try to use Lite Cleaner to remove redundant packages, running 64-bit LL2.0.
Post the output of
Code: [Select]
sudo apt-get autoremoveDid you get something like
Code: [Select]
Do you want to continue? (Y/n)

Thanks for your help misko.  I haven't actually tried your suggestion yet, but I have just updated to the newly-released litecleaner_1.0-0080 and the problem has been cured.
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #50 on: September 17, 2014, 03:16:03 AM »
 

mpig

  • Guest
Just installed this app. It works great. I love it. And i like the new icon. :D
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #49 on: September 17, 2014, 02:48:21 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
litecleaner_1.0-0080 released. Run Install Updates to get it.

Changes:
  • Added Chrome cleaner.
  • Added Chromium cleaner.
  • Added new Menu icon (thanks to misko)
  • Fixed Trash description.

To do: Add ask for password once from Menu launch.

« Last Edit: September 17, 2014, 05:33:23 AM by Valtam »
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #48 on: September 16, 2014, 08:39:18 PM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
Me likes :) Thank you misko.
You're welcome. Glad you like it. :)
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #47 on: September 16, 2014, 08:32:26 PM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Me likes :) Thank you misko.

 

Re: Lite Cleaner - Suggestions welcomed
« Reply #46 on: September 16, 2014, 08:28:20 PM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
@Misko
The Lite Cleaner icons you made are very nice!
Thanks Scott(0)!
Awesome! Could you please do one where the guy and broom is silver on a black background? Thank you.
Sure. Silver, that's "#c0c0c0".
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #45 on: September 16, 2014, 07:31:55 PM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Awesome! Could you please do one where the guy and broom is silver on a black background? Thank you.
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #44 on: September 16, 2014, 07:13:48 PM »
 

Scott

  • Global Moderator
  • Gold Level Poster
  • *****
  • 857
    Posts
  • Reputation: 186
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Intel Core i3 M 330

  • MEMORY: 6Gb

  • VIDEO CARD: Intel Integrated Graphics
@Misko
The Lite Cleaner icons you made are very nice!
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #43 on: September 16, 2014, 06:53:37 PM »
 

anon222

  • Muted
  • Gold Level Poster
  • *
  • 688
    Posts
  • Reputation: 192
  • Linux Lite Member
    • View Profile

  • CPU: Dual core Pentium E5700 3GHz

  • MEMORY: 3Gb

  • VIDEO CARD: GeForce GT 430
Yep, here is some more:
 

Re: Lite Cleaner - Suggestions welcomed
« Reply #42 on: September 16, 2014, 04:12:01 PM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
More than happy for someone to come up with a different icon :)




I have tried to send an .xcf file, but only .txt is alowed in the attachment

Did you make these?
 

 

-->
X Close Ad

Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section