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: 3380
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#1241 Post by siamhie »

Jerry3904 wrote: Wed Oct 23, 2024 9:32 am Out of my league, looks good
Thanks @Jerry3904

AVLinux wrote: Wed Oct 23, 2024 9:34 am @siamhie Whoa! Now THAT is customization to the max!

I have only yet to begin @AVLinux :hitmyhead:
I need to figure out how to tweak either FeatherPad or Mousepad to use the purple-grey background color now.
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
ceeslans
Posts: 829
Joined: Sun Apr 14, 2019 3:48 am

Re: MX Fluxbox Screenshots

#1242 Post by ceeslans »

@siamhie : tweaking Featherpad's colors is probably difficult; at least I always failed :(

But mousepad is a different story. The default styles (classic/cobalt/kate/oblivion/tango etc) are located in /usr/share/gtksourceview-4/styles folder. Check out the xml files, most likely you need to edit the color value for style name="background-pattern"
Of course it would best to not tamper with these default xml files. Instead, you could create a new style in ~/.local/share/gtksourceview-4/styles --> mousepad will automatically read and include this new style.
here's one style that may serve as a base xml for halloween:
dracula

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<!--
	The MIT License (MIT)

	Copyright (c) 2018 Dracula Theme

	Permission is hereby granted, free of charge, to any person obtaining a copy
	of this software and associated documentation files (the "Software"), to deal
	in the Software without restriction, including without limitation the rights
	to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
	copies of the Software, and to permit persons to whom the Software is
	furnished to do so, subject to the following conditions:

	The above copyright notice and this permission notice shall be included in all
	copies or substantial portions of the Software.

	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
	IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
	FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
	AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
	LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
	OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
	SOFTWARE.
-->

<style-scheme id="dracula" _name="Dracula" version="1.0">
  <author>Alvin Septiano</author>
  <_description>Dracula color scheme</_description>
  
	<!-- Dracula Color Palette -->
	<color name="background" value="#282a36"/>
	<color name="current-line" value="#44475a"/>
	<color name="selection" value="#bd93f9"/>
	<color name="foreground" value="#f8f8f2"/>
	<color name="comment" value="#6272a4"/>
	<color name="cyan" value="#8be9fd"/>
	<color name="green" value="#50fa7b"/>
	<color name="orange" value="#ffb86c"/>
	<color name="pink" value="#ff79c6"/>
	<color name="purple" value="#bd93f9"/>
	<color name="red" value="#ff5555"/>
	<color name="yellow" value="#f1fa8c"/>
	<color name="white" value="#ffffff"/>
	<color name="bone-white" value="#f8f8f0"/>
	<color name="weird-gray" value="#909194"/>

  <!-- Global Settings -->
  <style name="text"                        foreground="white" background="background"/>
  <style name="selection"                   foreground="bone-white" background="current-line"/>
  <style name="cursor"                      foreground="bone-white"/>
  <style name="secondary-cursor"            foreground="white"/>
  <style name="selection-unfocused"         foreground="background" background="white"/>
  <style name="current-line"                background="current-line"/>
  <style name="line-numbers"                foreground="current-line" background="background"/>
  <style name="background-pattern"          background="background"/>
  <style name="bracket-match"               foreground="yellow" background="white"/>
  <style name="bracket-mismatch"            foreground="red" background="white"/>
  <style name="search-match"                foreground="white" background="white"/>
  
  <style name="def:keyword"                 foreground="pink" bold="true"/>
  <style name="def:statement"               foreground="pink"/>
  <style name="def:function"                foreground="green"/>
  <style name="def:decimal"                 foreground="purple"/>
  <style name="def:preprocessor"            foreground="white"/>
  <style name="def:type"                    foreground="pink"/>
  
  <style name="def:character"               foreground="yellow"/>
  
  <style name="def:comment"                 foreground="comment"/>
  <style name="def:number"                  foreground="purple"/>
  <style name="def:string"                  foreground="yellow"/>
  <style name="def:net-address-in-comment"  foreground="cyan" italic="true" underline="true"/>
  <style name="def:underlined"              italic="true" underline="true"/>
  <style name="def:note"                    foreground="white" background="background" bold="true"/>
  <style name="def:error"                   foreground="red" bold="true"/>
  <style name="def:escape"                  foreground="purple"/>
  <style name="def:shebang"                 foreground="pink" bold="true"/>
  <style name="def:doc-comment-element"     italic="true"/>
  <style name="def:identifier"              foreground="green" bold="true"/>
  
  <style name="def:specials"                foreground="white" background="purple"/>
  
  <style name="def:variable"                foreground="orange"/>
  <style name="def:boolean"                 foreground="pink" bold="true"/>
  <style name="def:constant"                foreground="pink"/>
  <style name="def:special-constant"        foreground="pink" bold="true"/>
  
  <style name="diff:added-line"             foreground="bone-white"/>
  <style name="diff:removed-line"           foreground="cyan"/>
  <style name="diff:changed-line"           foreground="red"/>
  <style name="diff:diff-file"              foreground="green" bold="true"/>
  <style name="diff:location"               foreground="yellow"/>
  <style name="diff:special-case"           foreground="white" bold="true"/>	
  
  <style name="latex:command"               foreground="orange" bold="true"/>
  <style name="latex:include"               use-style="def:preprocessor"/>
  
  <style name="def:emphasis"                italic="true"/>
  <style name="def:strong-emphasis"         foreground="white" bold="true"/>
  <style name="def:inline-code"             foreground="background"/>
  <style name="def:insertion"               underline="single"/>
  <style name="def:deletion"                strikethrough="true"/>
  <style name="def:link-text"               foreground="cyan"/>
  <style name="def:link-symbol"             foreground="cyan" bold="true"/>
  <style name="def:link-destination"        italic="true" underline="single"/>
  <style name="def:heading"                 foreground="green" bold="true"/>
  <style name="def:thematic-break"          foreground="orange" bold="true"/>
  <style name="def:preformatted-section"    foreground="cyan"/>
  <style name="def:list-marker"             foreground="white" bold="true"/>
  
  <style name="def:heading0"                scale="5.0"/>
  <style name="def:heading1"                scale="2.5"/>
  <style name="def:heading2"                scale="2.0"/>
  <style name="def:heading3"                scale="1.7"/>
  <style name="def:heading4"                scale="1.5"/>
  <style name="def:heading5"                scale="1.3"/>
  <style name="def:heading6"                scale="1.2"/>
</style-scheme>
Sony Vaio VPCF23P (2011), Intel Core i7-2670, 6gb RAM, 240gb SSD, MX-Linux 23 based Fluxbox v/1.3.7+
Lenovo Thinkpad L560 (2016), Intel Core i5-6200, 16gb RAM, 240gb SSD, Devuan Daedalus based Fluxbox v/1.3.7+

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

Re: MX Fluxbox Screenshots

#1243 Post by siamhie »

ceeslans wrote: Wed Oct 23, 2024 3:26 pm @siamhie : tweaking Featherpad's colors is probably difficult; at least I always failed :(

But mousepad is a different story. The default styles (classic/cobalt/kate/oblivion/tango etc) are located in /usr/share/gtksourceview-4/styles folder. Check out the xml files, most likely you need to edit the color value for style name="background-pattern"
Of course it would best to not tamper with these default xml files. Instead, you could create a new style in ~/.local/share/gtksourceview-4/styles --> mousepad will automatically read and include this new style.

+1 @ceeslans

Worked like a charm. First I created the folders gtksourceview-4/styles in my ~/.local/share/ directory and copied the cobalt file over.

Then I edited it as such.

Set a name of the file so that it shows up in the preferences.

Code: Select all

<style-scheme id="volcano" _name="Volcano" version="1.0">
  <author>siamhie</author>
  <_description>grey purple color scheme</_description>
Then I edited the style name background to the hex value needed.

Code: Select all

<style name="text"                        foreground="white" background="#6E586F"/>


Saved the file as volcano.xml and now I have a background in Mousepad that matches the rest of my theme. :number1:

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
siamhie
Global Moderator
Posts: 3380
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#1244 Post by siamhie »

Was going through the various tint2 toolbars and saw there was a dock type toolbar available.
I edited it to have my most used programs listed and I like the addition of weather report at the end.


From left to right I have LibreWolf, Thunar, Mousepad, Xfce Terminal, GIMP, XMMS, nitrogen, MXPI and VirtualBox.

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
Jerry3904
Administrator
Posts: 23224
Joined: Wed Jul 19, 2006 6:13 am

Re: MX Fluxbox Screenshots

#1245 Post by Jerry3904 »

Glad to see that being used! I created that for MX-23 (I think) to provide another option in the MXFB dock world
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: 3380
Joined: Fri Aug 20, 2021 5:45 pm

Re: MX Fluxbox Screenshots

#1246 Post by siamhie »

Jerry3904 wrote: Fri Nov 01, 2024 1:59 pm Glad to see that being used! I created that for MX-23 (I think) to provide another option in the MXFB dock world

Thanks for that. Running those two tint toolbars is only 49MB of RAM usage. Not bad.
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
i_ri
Posts: 1105
Joined: Tue Jun 30, 2015 12:26 am

Re: MX Fluxbox Screenshots

#1247 Post by i_ri »

Yo siamhie
you like windowmaker. wmbutton is less than one MiB for twenty-seven Launchers. program nine buttons alike turns it into one big button (of three launchers. )
top row, bottom row. six launchers.
corners. twelve launchers.
use 27?

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

Re: MX Fluxbox Screenshots

#1248 Post by siamhie »

i_ri wrote: Fri Nov 01, 2024 2:21 pm Yo siamhie
you like windowmaker. wmbutton is less than one MiB for twenty-seven Launchers. program nine buttons alike turns it into one big button (of three launchers. )

Tried that in the past and didn't like the look of it with fluxbox. It is better suited for Window Maker.

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
ceeslans
Posts: 829
Joined: Sun Apr 14, 2019 3:48 am

Re: MX Fluxbox Screenshots

#1249 Post by ceeslans »

Jerry3904 wrote: Fri Nov 01, 2024 1:59 pm Glad to see that being used! I created that for MX-23 (I think) to provide another option in the MXFB dock world
As far as i know, a number of us mxfb users were running such tint2 dock panels already on MX19....
Sony Vaio VPCF23P (2011), Intel Core i7-2670, 6gb RAM, 240gb SSD, MX-Linux 23 based Fluxbox v/1.3.7+
Lenovo Thinkpad L560 (2016), Intel Core i5-6200, 16gb RAM, 240gb SSD, Devuan Daedalus based Fluxbox v/1.3.7+

User avatar
wdscharff
Posts: 1109
Joined: Mon Feb 24, 2020 1:07 am

Re: MX Fluxbox Screenshots

#1250 Post by wdscharff »

Years ago I had shown screenshots on FB with 4 Tint2 instances, i.e. as normal toolbar on top, fake Plank Dock below and desktop fake.icons 2 rows side by side on the left side. Simulating classic icons on the desktop is easier and more resource-saving with Tint2 than with Idesk (imho)
my working horse Desktop AMD Ryzen 9 3900x, 32GB Ram // SSD ... enough
mx-fluxbox, what else?

In nature there are neither rewards nor punishments.
There are consequences.


my wallpaper gallery

Post Reply

Return to “MX Fluxbox Official Release”