![]() |
Lite Tweaks - Suggestions welcomed - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Development (https://www.linuxliteos.com/forums/forumdisplay.php?fid=7) +--- Forum: Linux Lite Software Development (https://www.linuxliteos.com/forums/forumdisplay.php?fid=30) +--- Thread: Lite Tweaks - Suggestions welcomed (/showthread.php?tid=801) |
Lite Tweaks - Suggestions welcomed - Valtam - 09-04-2014 Our next addition to the Lite application family will be Lite Tweaks. Install: Code: sudo apt-get update && sudo apt-get install lite-cleaner Source here: https://github.com/linuxlite/litetweaks ![]() Before we embark on this, I'd like to ask the community for the type of tasks they'd like to see in a cleaner. For example:
![]() Re: Lite Cleaner - Suggestions welcomed - rokytnji - 09-04-2014 What? Like Bleachbit? Personally. I am too much of a control freak to trust a autocleaner. Hope you don't mind what I post. If so I will modify and delete Remove unwanted junk. Code: apt-get autoremove Code: deborphan | xargs apt-get -y remove Code: COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P Re: Lite Cleaner - Suggestions welcomed - Alex - 09-04-2014 When I was in windows (last week) I used a free program called CCleaner it seemed to do the job quite well and had/has a number of functions from cleaning to registry checking to uninstalling unwanted progs and their components. I don't know how much of that sort of thing would apply to LL. but something similar might be good. ![]() Re: Lite Cleaner - Suggestions welcomed - anon222 - 09-04-2014 There should be an option to remove old kernels. I guess these are already in the script. Code: sudo apt-get autoclean Code: sudo apt-get clean Code: sudo apt-get autoremove Maybe clearing thumbnail cache Code: rm -f ~/.cache/thumbnails/normal/* Code: sudo dpkg --purge $(COLUMNS=200 dpkg -l | grep "^rc" | tr -s ' ' | cut -d ' ' -f 2) Code: rm -r -f ~/.local/share/Trash/files/* Re: Lite Cleaner - Suggestions welcomed - Valtam - 09-04-2014 Thanks folks, keep'm coming, some good ones there already ![]() Re: Lite Cleaner - Suggestions welcomed - anon222 - 09-05-2014 I've found this 7 year old, yet very interesting script called "Ubucleaner" License: GPL It might help you. Code: #!/bin/bash Re: Lite Cleaner - Suggestions welcomed - Valtam - 09-05-2014 So far ... ![]() Re: Lite Cleaner - Suggestions welcomed - anon222 - 09-05-2014 (09-05-2014, 10:16 AM)Valtam link Wrote: So far ...I like it. May I see the code? I have a few ideas. Re: Lite Cleaner - Suggestions welcomed - Coastie - 09-05-2014 This will be great for those of us like me who dread the Terminal. :-[ Re: Lite Cleaner - Suggestions welcomed - Wirezfree - 09-05-2014 (09-05-2014, 06:19 PM)Coastie link Wrote: This will be great for those of us like me who dread the Terminal. :-[ Yes agreed... I'm waiting for the next tool "Lite Optimise" ![]() For those little tweaks to make things run smoother & quicker ![]() Dave |