@Jerry3904
These Fluent themes are really simple themes (on purpose) and fit quite well with the 'Dualum' tint2 theme in MX21. The new version for Rofi is mostly aimed at smaller screens.
@Melber
Thanks a lot. I now have MX21 on a usb stick, so I'll give it a try. As for your MX-comfort Recolour Tool, have you thought about doing something similar for Rofi?
Even if winter is over, I thought I'd share my winter theme, although it is quite basic - I now try to follow the KISS principle whenever possible. It is aimed at laptops small screens, but not only. Back in the days, there existed a similar theme in Kodi. It looks better with ShadeZ-Dark or Simply-Circles-Dark GTK themes and Simply_Circles white icons. FB toolbar (if at the top) is set to auto-hide.
sc_09.jpg
So, here is the archive...
FB-BnW.tar.gz
... Rofi theme...
Code: Select all
/**
* ROFI Color theme
*/
* {
//
// BnW (BLACK & WHITE) style
//
// Colors
bg-inpt: #1c1c1c; // inputbar background
fg-inpt: #ebebeb; // inputbar text
bg-win: #1c1c1c; // window background
fg-nor: #ebebeb; // text normal unselected
bg-sel: #ebebeb; // item selected background
fg-sel: #1c1c1c; // text normal selected
background-color: @bg-win;
font: "Noto Sans Mono CJK KR Regular 12";
//
border: 0;
margin: 0;
padding: 0;
spacing: 0;
}
window {
location: center;
anchor: center;
width: 40%;
}
element {
padding: 12;
text-color: @fg-nor;
}
element selected {
background-color: @bg-sel;
text-color: @fg-sel;
}
element-text {
background-color: inherit;
text-color: inherit;
vertical-align: 0.5;
}
element-icon {
size: 30;
}
entry {
background-color: @bg-inpt;
padding: 12;
text-color: @fg-inpt;
}
inputbar {
children: [prompt, entry];
}
listview {
background-color: @bg-win;
columns: 1;
lines: 10;
}
mainbox {
background-color: @bg-win;
children: [ inputbar, message, listview ];
}
prompt {
background-color: @bg-inpt;
enabled: true;
padding: 12 0 0 12;
text-color: @fg-inpt;
}
... and Conky script.
Code: Select all
conky.config = {
background = true,
own_window = true,
own_window_class = 'Conky',
own_window_colour = '000000',
own_window_transparent = false,
own_window_type = 'desktop',
own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager',
own_window_argb_visual = true,
own_window_argb_value = 0,
double_buffer = true,
no_buffers = true,
use_spacer = 'none',
use_xft = true,
xftalpha = 1,
font = 'Monospace:size=11',
update_interval = 1,
uppercase = false,
override_utf8_locale = true,
stippled_borders = 1,
border_width = 5,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = true,
show_graph_scale = true,
show_graph_range = true,
alignment = 'top_middle',
gap_x = 0,
gap_y = 0,
minimum_height = 25,
minimum_width = 1900,
maximum_width = 1920,
net_avg_samples = 1,
cpu_avg_samples = 6,
short_units = true,
pad_percents = 2,
text_buffer_size = 2048,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
color0 = 'ffffff', --white
color1 = 'aqua',
color2 = 'ffcc00', --light orange
color3 = 'red',
color4 = 'green',
color5 = 'blue',
color6 = '000000', --black
color7 = 'grey',
}
conky.text = [[
${goto 40}${voffset 2}${font Noto Sans CJK KR:Bold:size=11}${desktop_name}${voffset -0}\
# test audacious
${if_running audacious}\
${goto 140}${voffset -0}${font FontAwesome:size=12} ${voffset -8}${voffset 3}${font Noto Sans CJK KR:size=11}${scroll 120 ${audacious_title 160}}\
${endif}
${goto 1020}${voffset -29}${font Ubuntu:Regular:size=10}\
${color1}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Bold:size=10} ${battery_short}${color7}\
${goto 1100}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${cpu cpu1}%\
${goto 1160}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${cpu cpu2}%\
${goto 1220}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${memperc}%\
${goto 1280}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${swapperc}%\
${goto 1340}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${fs_used_perc /}%\
${goto 1400}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${fs_used_perc /home}%\
${goto 1470}${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${downspeedf enp2s0}KiB ${font FontAwesome:size=12}${voffset -1}${font Ubuntu:Regular:size=10} ${upspeedf enp2s0}KiB\
${goto 1020}${voffset 10}${color1}${battery_bar 3, 70}${color7}\
${goto 1100}${cpubar cpu1 3, 50}\
${goto 1160}${cpubar cpu2 3, 50}\
${goto 1220}${membar 3,50}\
${goto 1280}${swapbar 3,50}\
${goto 1340}${fs_bar 3,50 /}\
${goto 1400}${fs_bar 3,50 /home}${goto 1460}${color}\
${alignr}${voffset -11}${font FontAwesome:size=14} ${font Ubuntu:Regular:size=11}${time %A %d %B} ${voffset -2}${font FontAwesome:size=14} ${font Ubuntu:Regular:size=12}${voffset 0}${time %H}:${time %M}${font}${voffset -6}\
#${endif}
]]
As for the other versions of FB matcha, someone seems to have created the full set already. They are available at box-look.org.
You do not have the required permissions to view the files attached to this post.