MX Fluxbox Screenshots

Help for MX Fluxbox
When asking for help, use Quick System Info from MX Tools. It will be properly formatted using the following steps.
1. Click on Quick System Info in MX Tools
2. Right click in your post and paste.
Message
Author
User avatar
siamhie
Global Moderator
Posts: 3381
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#561 Post by siamhie »

asqwerth wrote: Thu Mar 03, 2022 7:39 am @AVLinux I will add that not every font displays the wind direction arrows, though more do than that show the moon phase. Only realised this in my recent period of wttr.in conky tests. ceeslans was very helpful to me as well.
I rely on Fontmatrix to help me track down those types of fonts. I've recently been playing around with upload/download fonts.


220303_091502.png

Code: Select all

${goto 60}${font DejaVu Serif}⇊${font} Download Speed 
${alignc}${downspeed wlan0}  
${goto 40}Total Downloaded ${totaldown wlan0}

${goto 65}${font DejaVu Serif}⇈${font} Upload Speed 
${alignc}${upspeed wlan0}  
${goto 40}Total Uploaded ${totalup wlan0}
You do not have the required permissions to view the files attached to this post.
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.

User avatar
AVLinux
Posts: 3005
Joined: Wed Jul 15, 2020 1:15 am

Re: MX Fluxbox Screenshots

#562 Post by AVLinux »

OK, not officially an MX-Fluxbox screenie, but lots of cross-pollination going on and could certainly be used with MXFB.. I've raided everyone's Conky closet for this one..lol
ksnip_20220303-215137.png
I won't post the code yet because it relies on some outside fonts and scripts (pamix, init-detect) and if there is any interest I should probably post a new topic and provide all the assets..

Thanks everyone for the brain pickings...
*Edit screenie updated with final version (lol, for now)
You do not have the required permissions to view the files attached to this post.
Last edited by AVLinux on Thu Mar 03, 2022 9:56 pm, edited 2 times in total.

User avatar
siamhie
Global Moderator
Posts: 3381
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#563 Post by siamhie »

AVLinux wrote: Thu Mar 03, 2022 1:14 pm OK, not officially an MX-Fluxbox screenie, but lots of cross-pollination going on and could certainly be used with MXFB.. I've raided everyone's Conky closet for this one..lol
ksnip_20220303-154601.png

I won't post the code yet because it relies on some outside fonts and scripts (pamix, init-detect) and if there is any interest I should probably post a new topic and provide all the assets..

Thanks everyone for the brain pickings..
Yes please. I have pamixer installed and an init-id script because I have a couple of manyroads conkys backed up.
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.

User avatar
AVLinux
Posts: 3005
Joined: Wed Jul 15, 2020 1:15 am

Re: MX Fluxbox Screenshots

#564 Post by AVLinux »

OK, Once I finish it I will post it! More questions..

Does anyone know how to just display the total number of CPU cores and threads, I'm not looking to show each CPU core or a bar graph or anything like that.. I just want the two total numbers ie(24 Cores/48 Threads) or something like that. Advice appreciated!

*EDIT ${execi 1000 nproc --all} seems to do it, or close enough

*EDIT-2 This little gem got me my CPU Model.. (Note I had to select what number to start and stop after the 'cut' on to make it fit, see screen shot a couple of posts above):

Code: Select all

${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'| uniq | cut -c 10-29}
and by extension Vendor ID:

Code: Select all

${execi 1000 cat /proc/cpuinfo | grep 'vendor_id' | sed -e 's/vendor_id.*: //'| uniq | cut -c 1-29}${color}${font}

User avatar
siamhie
Global Moderator
Posts: 3381
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#565 Post by siamhie »

AVLinux wrote: Thu Mar 03, 2022 4:24 pm OK, Once I finish it I will post it! More questions..

Does anyone know how to just display the total number of CPU cores and threads, I'm not looking to show each CPU core or a bar graph or anything like that.. I just want the two total numbers ie(24 Cores/48 Threads) or something like that. Advice appreciated!

*EDIT ${execi 1000 nproc --all} seems to do it, or close enough

*EDIT-2 This little gem got me my CPU Model.. (Note I had to select what number to start and stop after the 'cut' on to make it fit, see screen shot a couple of posts above):

Code: Select all

${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'| uniq | cut -c 10-29}
and by extension Vendor ID:

Code: Select all

${execi 1000 cat /proc/cpuinfo | grep 'vendor_id' | sed -e 's/vendor_id.*: //'| uniq | cut -c 1-29}${color}${font}

Dude, you're a genius. I took a little bit of this and a little bit of that to create the perfect CPU information now. :number1:

Code: Select all

${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'| uniq | cut -c 1-24}/${execi 1000 nproc --all} thread processor

Image
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.

User avatar
AVLinux
Posts: 3005
Joined: Wed Jul 15, 2020 1:15 am

Re: MX Fluxbox Screenshots

#566 Post by AVLinux »

Very Nice!

Yes you can use that line to pretty much isolate any of the output of 'cat /proc/cpuinfo'

Code: Select all

#CPU TITLE
${offset 35}${font RockSalt:size=10}${color White}Cpu${font Hack Nerd Font:size=10}  ${color}${goto 200}${hr}${font} 
#CPU SECTION
${voffset 5}${goto 40}${color2}Brand:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'vendor_id' | sed -e 's/vendor_id.*: //'| uniq | cut -c 1-29}${color}${font}
${voffset 0}${goto 40}${color2}Model:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'| uniq | cut -c 10-29}${color}${font}
${voffset 0}${goto 40}${color2}Cores:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'cpu cores' | sed -e 's/cpu cores.*: //'| uniq | cut -c 1-29}${color}${font}
${voffset 0}${goto 40}${color2}Threads:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'siblings' | sed -e 's/siblings.*: //'| uniq | cut -c 1-29}${color}${font}
${voffset 0}${goto 40}${color2}Usage:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}$cpu%${color}${font}
${voffset 0}${goto 40}${color2}Freq:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${freq_g} Ghz${color}${font}
${voffset 0}${goto 40}${color2}Temp:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${hwmon temp 1:} C${color}${font}
ksnip_20220305-110544.png
OK, we are getting very far off topic and I will post my finished Conky with code, fonts and other assets in the 'Community Sharing' thread sometime this weekend..

Now back to our previously scheduled programming and the beautiful world of MX Fluxbox Screenshots!!
You do not have the required permissions to view the files attached to this post.

User avatar
Jerry3904
Administrator
Posts: 23227
Joined: Wed Jul 19, 2006 6:13 am

Re: MX Fluxbox Screenshots

#567 Post by Jerry3904 »

Man, you people are doing great stuff! I appreciate all the posts in this loooong thread.
Production: 5.10, MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin

User avatar
siamhie
Global Moderator
Posts: 3381
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#568 Post by siamhie »

AVLinux wrote: Sat Mar 05, 2022 11:09 am Very Nice!

Yes you can use that line to pretty much isolate any of the output of 'cat /proc/cpuinfo'

Code: Select all

#CPU TITLE
${offset 35}${font RockSalt:size=10}${color White}Cpu${font Hack Nerd Font:size=10}  ${color}${goto 200}${hr}${font} 
#CPU SECTION
${voffset 5}${goto 40}${color2}Brand:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'vendor_id' | sed -e 's/vendor_id.*: //'| uniq | cut -c 1-29}${color}${font}
${voffset 0}${goto 40}${color2}Model:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'| uniq | cut -c 10-29}${color}${font}
${voffset 0}${goto 40}${color2}Cores:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'cpu cores' | sed -e 's/cpu cores.*: //'| uniq | cut -c 1-29}${color}${font}
${voffset 0}${goto 40}${color2}Threads:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${execi 1000 cat /proc/cpuinfo | grep 'siblings' | sed -e 's/siblings.*: //'| uniq | cut -c 1-29}${color}${font}
${voffset 0}${goto 40}${color2}Usage:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}$cpu%${color}${font}
${voffset 0}${goto 40}${color2}Freq:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${freq_g} Ghz${color}${font}
${voffset 0}${goto 40}${color2}Temp:${font Hack Nerd Font:size=10}  ${font}${color}${alignr}${color3}${hwmon temp 1:} C${color}${font}
ksnip_20220305-110544.png

OK, we are getting very far off topic and I will post my finished Conky with code, fonts and other assets in the 'Community Sharing' thread sometime this weekend..

Now back to our previously scheduled programming and the beautiful world of MX Fluxbox Screenshots!!
Very cool. I'm working on a new conky/desktop and this code will help fill in some gaps. I came across this post on Reddit and have decided to use my own MB's diagram.

Dummy Page.jpg
You do not have the required permissions to view the files attached to this post.
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.

User avatar
siamhie
Global Moderator
Posts: 3381
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#569 Post by siamhie »

I present bannana-rama :biggrin:


Image
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.

User avatar
AVLinux
Posts: 3005
Joined: Wed Jul 15, 2020 1:15 am

Re: MX Fluxbox Screenshots

#570 Post by AVLinux »

siamhie wrote: Sat Mar 05, 2022 4:16 pm I present bannana-rama :biggrin:


Image
Wow, Cool! You went to a lot of work on that one!

Post Reply

Return to “MX Fluxbox Official Release”