LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-27-2020, 07:09 PM   #4381
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,811

Rep: Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447

Quote:
Originally Posted by lonestar_italy View Post
Just a simple plasma desktop...

Can't get much more current than that! Nice box.
 
1 members found this post helpful.
Old 10-27-2020, 07:12 PM   #4382
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,811

Rep: Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447
Quote:
Originally Posted by Cabbie001 View Post
Hey! as an aside, thank you for introducing me to the "cut" command! (in your conkyrc)
I see it does things I thought only awk could do. Very handy for scripts.
Suppose this is something everybody else already knew ... lol
Cheers
I had no clue it existed until I got curious how Hirens Boot CD Linux Environment did it. I checked out their ".conkyrc" and started playing with it and the lights went On.
 
Old 10-28-2020, 08:23 AM   #4383
individual
Member
 
Registered: Jul 2018
Posts: 315
Blog Entries: 1

Rep: Reputation: 233Reputation: 233Reputation: 233
Quote:
Originally Posted by enorbet View Post
Code:
${offset 400}${color red}${exec sensors | grep 'Core 0' | awk '{print $0,$1,$2,$3}'| cut -c1-24} 
${offset 410}${color red}${exec sensors | grep 'Core 1' | awk '{print $0,$1,$2,$3}'| cut -c1-24}
${offset 420}${color red}${exec sensors | grep 'Core 2' | awk '{print $0,$1,$2,$3}'| cut -c1-24}
${offset 430}${color red}${exec sensors | grep 'Core 3' | awk '{print $0,$1,$2,$3}'| cut -c1-24}
${offset 440}${color red}${exec sensors | grep 'Core 4' | awk '{print $0,$1,$2,$3}'| cut -c1-24}
${offset 450}${color red}${exec sensors | grep 'Core 5' | awk '{print $0,$1,$2,$3}'| cut -c1-24}
Can I save you a few characters?
Code:
sensors | awk '/Core [PUT NUMBER HERE]/ { print $1,$2,$3 }'
 
1 members found this post helpful.
Old 10-28-2020, 08:43 AM   #4384
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
Just a bit of my backyard.
Attached Thumbnails
Click image for larger version

Name:	L2.jpg
Views:	131
Size:	238.3 KB
ID:	34420  
 
1 members found this post helpful.
Old 10-28-2020, 08:50 AM   #4385
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,167

Rep: Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340Reputation: 7340
Quote:
Originally Posted by lonestar_italy View Post
Just a simple plasma desktop...
Good one! Just in time for Halloween.

The folks at palemoon.org have put a similar theme at the top of their page. This
is not a plug for palemoon, it is just a very well done, IMHO, Halloween theme.
 
Old 10-28-2020, 11:03 AM   #4386
igadoter
Senior Member
 
Registered: Sep 2006
Location: wroclaw, poland
Distribution: many, primary Slackware
Posts: 2,717
Blog Entries: 1

Rep: Reputation: 625Reputation: 625Reputation: 625Reputation: 625Reputation: 625Reputation: 625
Quote:
Originally Posted by cwizardone View Post
Good one! Just in time for Halloween.

The folks at palemoon.org have put a similar theme at the top of their page. This
is not a plug for palemoon, it is just a very well done, IMHO, Halloween theme.
For me it is like a video game.
 
1 members found this post helpful.
Old 10-28-2020, 11:50 AM   #4387
lonestar_italy
Member
 
Registered: Nov 2010
Location: Italy
Distribution: Slackware64-current
Posts: 175

Rep: Reputation: 70
Quote:
Originally Posted by cwizardone View Post
Good one! Just in time for Halloween.

The folks at palemoon.org have put a similar theme at the top of their page. This
is not a plug for palemoon, it is just a very well done, IMHO, Halloween theme.
Oh, I'm not sure if the Great Lord Cthulhu would appreciate being a Halloween decoration, but we're not gonna tell him
 
1 members found this post helpful.
Old 10-28-2020, 12:30 PM   #4388
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,811

Rep: Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447
Thanks individual! I like lean 'n mean and that works a treat. How do I modify space between item designation (core number in this case) and output? Isn't that what "cut" does?
 
Old 10-28-2020, 02:03 PM   #4389
individual
Member
 
Registered: Jul 2018
Posts: 315
Blog Entries: 1

Rep: Reputation: 233Reputation: 233Reputation: 233
Quote:
Originally Posted by enorbet View Post
Thanks individual! I like lean 'n mean and that works a treat. How do I modify space between item designation (core number in this case) and output? Isn't that what "cut" does?
If you want to space it out like it is in your screenshot you'll have to manually do it. Which, judging by the screenshot, it is separated with a tab. What makes awk different from cut is awk splits words on spaces and tabs by default, where cut splits only on tabs by default. Since you were cutting on a single space, there is a tab left over in the output.
Code:
sensors | awk '/Core 0/ { print $1, $2, "\t", $3 }'
 
Old 10-29-2020, 06:38 PM   #4390
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,077

Rep: Reputation: Disabled
Wallpaper gift from Microsoft

As I am a Windows Insider

Other that than, Mate 1.24 on Slint.
Attached Thumbnails
Click image for larger version

Name:	WIP.jpg
Views:	169
Size:	154.0 KB
ID:	34434  

Last edited by Didier Spaier; 10-30-2020 at 08:24 AM. Reason: s/Microsoft/Windows/
 
1 members found this post helpful.
Old 10-30-2020, 05:37 AM   #4391
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,480
Blog Entries: 2

Rep: Reputation: 986Reputation: 986Reputation: 986Reputation: 986Reputation: 986Reputation: 986Reputation: 986Reputation: 986
Exclamation

Quote:
Originally Posted by Didier Spaier View Post
As I am a Microsoft Insider

Other that than, Mate 1.24 on Slint.

a spy!!

(nice backdrop BTW )
 
1 members found this post helpful.
Old 10-30-2020, 11:04 AM   #4392
jheengut
Member
 
Registered: Sep 2006
Location: Providence, Moka Mauritius
Distribution: Slackware, Lubuntu
Posts: 352
Blog Entries: 16

Rep: Reputation: 51
Talking nice

Quote:
Originally Posted by Didier Spaier View Post
As I am a Windows Insider

Other that than, Mate 1.24 on Slint.



I am a windows insider too, just to spy what's happening around...
 
Old 10-30-2020, 01:24 PM   #4393
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 822

Rep: Reputation: 442Reputation: 442Reputation: 442Reputation: 442Reputation: 442
I am forced to use Windows...
 
Old 10-30-2020, 10:53 PM   #4394
Cabbie001
Member
 
Registered: Jan 2020
Location: Canada
Distribution: Slackware64 15.0; Devuan Beowulf 3.0 (64bit)
Posts: 169

Rep: Reputation: Disabled
Angry

Quote:
Originally Posted by Bindestreck View Post
I am forced to use Windows...
And that is sad
 
Old 10-31-2020, 01:23 PM   #4395
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,811

Rep: Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447Reputation: 4447
Being forced to use Windows is far worse than merely sad. MS has worked to appear to have grown up from it's predatory days but it doesn't look at all real to me. It merely looks ever more like a wolf in sheep's clothing.

Recently I bought a new Z490 motherboard to build a new system. Naturally all I had to do to run Linux was transfer the hard drives over. All distributions (6 of them) just worked. However Windows 7 which I still mildly need to for one app and occasional hardware firmware settings just won't and has me yanking out my hair for days now all because MS has successfully caused USB3 and other driver implementation, to fail even most deep and difficult workarounds including altering the install media to do a "Repair Install". One can do nothing when the very first screen disables both mouse and keyboard. I don't even know if 35-50 bux for a stupid PCIe PS/2 adapter will solve the problem.

MS reminds me of a very ugly experience I once witnessed. A very sweet cat I had gave birth to a litter of kittens and once they were weaned and could eat solid food, one day I set out a plate with a can of meat cat food spread out around the plate and set it out for the kittens. They had always nursed peacefully but apparently the smell of meat triggered the Alpha who literally leaped on the plate and spread it's paws as wide as it could covering ALL the food while it gorged between growling viciously and attacking any of it's siblings who even got close. The only difference between that ugly, viciously selfish kitten is that MS would have taken a dump on the plate when it was done if not killing all of it's brethren.

If a racer in a track event during Olympics were to trip or shove down any competitor, they would be immediately disqualified and barred. Why do we allow, even applaud, such predatory and harmful practices in business? Disgusting! and counter-productive to the infancy of computing, possibly the most important and long-lasting advancement in human civilization.

My sincere apologies for the OT post but that really triggers me.
 
6 members found this post helpful.
  


Reply

Tags
background, cwm, dwm, framebuffer, gnome, gui, i3, ion3, kde, monitor, musca, screenshot, tmux, wallpaper, xfce4, xterm



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
3D Desktop on Slackware? darkhatter Slackware 3 10-10-2006 12:26 PM
Slackware 10.0 with NO Desktop NiPP Linux - Newbie 2 01-02-2006 10:43 AM
3d desktop on Slackware k1ll3r_x Linux - Software 1 09-20-2005 10:47 PM
Desktop Slackware s0no Slackware 5 12-04-2004 11:20 AM
I can't get my desktop in Slackware 10 DraGoNsLaYeR Linux - Newbie 1 06-27-2004 02:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration