You are not logged in.

#1 2010-06-17 05:38:34

orphius1970
Member
From: Modesto (HELL) California
Registered: 2009-02-27
Posts: 151

[solved] Conky: Show trash bin contents???

I am using Xfce and would love to have a line in my conky that shows if there are files
in my trash or not. somethings like this:

Trash: 0 files
or
Trash: 3 files

Is there a way to do this???

Last edited by orphius1970 (2010-06-17 11:12:31)


AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64

Offline

#2 2010-06-17 07:51:57

demian
Member
From: Frankfurt, Germany
Registered: 2009-05-06
Posts: 709

Re: [solved] Conky: Show trash bin contents???

Sure. An example:
Trash: ${color1}${exec ls -a /home/user/.local/trash | wc -l} Files${color}


no place like /home
github

Offline

#3 2010-06-17 08:05:47

Vintendo
Member
From: Netherlands
Registered: 2008-04-21
Posts: 375
Website

Re: [solved] Conky: Show trash bin contents???

That would only get you the amount of files AND directories, for just the amount of files I would do:

Trash: ${color1}${exec find /home/user/.local/trash -type f | wc -l} Files${color}

Offline

#4 2010-06-17 08:23:32

orphius1970
Member
From: Modesto (HELL) California
Registered: 2009-02-27
Posts: 151

Re: [solved] Conky: Show trash bin contents???

neither one shows any results.

Got it working. This is what I used:

Trash: ${exec find /home/user/.local/share/Trash -type f | wc -l}

Thank you!

Is it possible to make that command check two locations and output as one result.
I have second drive and the trash gets stored in folder .Trash-1000

Last edited by orphius1970 (2010-06-17 08:42:16)


AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64

Offline

#5 2010-06-17 11:01:53

Vintendo
Member
From: Netherlands
Registered: 2008-04-21
Posts: 375
Website

Re: [solved] Conky: Show trash bin contents???

You can just add those

Trash: ${color1}${exec find /home/user/.local/trash /second/location/trash/.Trash-1000 /third/location/trash -type f | wc -l} Files${color}

Offline

#6 2010-06-17 11:12:17

orphius1970
Member
From: Modesto (HELL) California
Registered: 2009-02-27
Posts: 151

Re: [solved] Conky: Show trash bin contents???

vintendo,   thank you.
I had just figured that out. You beat me to it! smile
Man pages again...... smile


AMD Phenomx3, 4gb ram, Nvidia Gforce 9400gt,
MSI K9N2 Diamond Motherboard, Arch x86_64

Offline

Board footer

Powered by FluxBB