You are not logged in.
PackRat wrote:Nice one.
"Bob" Dobbs... Dobbie? https://en.wikipedia.org/wiki/J._R._%22Bob%22_Dobbs
I don't care what you do at home. Would you care to explain?
Offline
PackRat wrote:Nice one.
Thanks; never ends though. Went back to the awesomebar and added centermaster -
You have a link to that astronaut wall?
You must unlearn what you have learned.
-- yoda
Offline
Dobbie03 wrote:PackRat wrote:Nice one.
"Bob" Dobbs... Dobbie? https://en.wikipedia.org/wiki/J._R._%22Bob%22_Dobbs
It's all starting to make sense now.
You must unlearn what you have learned.
-- yoda
Offline
hhh wrote:Dobbie03 wrote:Nice one.
"Bob" Dobbs... Dobbie? https://en.wikipedia.org/wiki/J._R._%22Bob%22_Dobbs
It's all starting to make sense now.
Right? Malaysia to New Zealand is only 11 hours by plane, easy for the leader of the Church of the SubGenius to pull off. Plus, all that Satanic music he listens to is a dead giveaway.
re: the wallpaper, I found this...
I don't care what you do at home. Would you care to explain?
Offline
Progress. Had to GIMP the Numix icons from SVGs to 48x48px PNGs to get them the right size for mako. As SVGs they were 16x16px...
Also, miffed that today's update of Waybar still doesn't let me have a 12-hour clock without a leading 0. I've never seen this issue with any other panel, I don't get it. GNOME, KDE, XFCE, tint2, awesome... all display 5:54, or maybe 5:54 PM at worst. But not Waybar...
I don't care what you do at home. Would you care to explain?
Offline
Also, miffed that today's update of Waybar still doesn't let me have a 12-hour clock without a leading 0. I've never seen this issue with any other panel, I don't get it. GNOME, KDE, XFCE, tint2, awesome... all display 5:54, or maybe 5:54 PM at worst. But not Waybar...
What date format are you using?
You must unlearn what you have learned.
-- yoda
Offline
What date format are you using?
:%OI:%M
%l produces a chromo error, same with %_I and %-I, as stated in the bug reports.
I don't care what you do at home. Would you care to explain?
Offline
hhh wrote:Dobbie03 wrote:Nice one.
"Bob" Dobbs... Dobbie? https://en.wikipedia.org/wiki/J._R._%22Bob%22_Dobbs
It's all starting to make sense now.
Too much sense ...
"All we are is dust in the wind, dude"
- Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
- Wayne Campbell
Offline
That's a brilliant taskbar+font hhh.
♫♪ JPOP listening...
Offline
@Nili, thanks! waybar and Futura Bk BT (which I've been using for years now, it's a Futura ripoff, find it from any free font site).
Waybar (work in progress) config...
{
"layer": "top", // Waybar at top layer
"position": "left", // Waybar position (top|bottom|left|right)
"width": 64, // Waybar width
"spacing": 12, // Gaps between modules (4px)
// Choose the order of the modules
"modules-left": ["hyprland/workspaces", "wlr/taskbar"],
"modules-right": ["network", "network#net2", "cpu", "cpu#cpu2", "memory", "memory#mem2", "disk", "disk#disk2", "temperature", "temperature#temp2", "battery", "battery#bat2", "clock"],
// Modules configuration
// modules-left
"hyprland/workspaces": {
"format": "{icon}",
"format-icons": {
"1": "",
"3": "",
"2": "",
"4": "",
"active": ""
},
"persistent-workspaces": {
"*": 4
}
},
"wlr/taskbar": {
"icon-theme": "Numix-Circle",
"icon-size": 36,
"on-click": "activate",
"format": "{icon}"
},
// modules-right
"network": {
"format-wifi": "",
"on-click": "xfce4-terminal -e nmtui",
"tooltip": false
},
"network#net2": {
"format-wifi": "{signalStrength}%"
},
"cpu": {
"format": ""
},
"cpu#cpu2": {
"format": "{usage}%"
},
"memory": {
"format": ""
},
"memory#mem2": {
"format": "{}%"
},
"disk": {
"format": "?"
},
"disk#disk2": {
"interval": 30,
"format": "{percentage_used}%"
},
"temperature": {
"thermal-zone": 2,
"format": "{icon}",
"format-icons": [""],
"tooltip": false
},
"temperature#temp2": {
"thermal-zone": 2,
"format": "{temperatureF}°F",
"tooltip": false
},
"battery": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
"format": "{icon}",
"format-charging": "",
"format-plugged": "",
"format-icons": ["", "", "", "", ""]
},
"battery#bat2": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
"format": "{icon}",
"format-charging": "{capacity}%",
"format-plugged": "{capacity}%"
},
"clock": {
"format": "{:%OI:%M}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
}
}style.css
window#waybar {
background-color: rgba(235, 235, 235, 0.5);
}
#workspaces {
margin:12px 12px 0 12px;
}
#workspaces button {
color: #999999;
padding: 0 2px 0 0;
margin: 6px 0;
border-radius: 28px;
}
#workspaces button.active {
color: #212121;
}
#workspaces button:hover {
color: #FDB900;
}
#workspaces button.urgent {
color: #eb4d4b;
}
#taskbar button {
margin: 4px 10px;
padding: 2px 0;
border: solid 2px rgba(53, 53, 53, 0);
border-radius: 12px;
}
#taskbar button.active {
border: solid 2px #555555;
background-color: #555555;
}
#taskbar button:hover {
border: solid 2px #999999;
background: #808080;
}
#cpu,
#memory,
#disk,
#temperature,
#battery {
margin-top: 7px;
font-size: 14px;
color: #212121;
}
#network,
#network.net2,
#cpu.cpu2,
#memory.mem2,
#disk.disk2,
#temperature.temp2 {
margin-top:-3px;
font-size: 14px;
color: #212121;
}
#clock {
margin: 0 0 20px 0;
font-weight: bold;
color: #212121;
}I don't care what you do at home. Would you care to explain?
Offline
PackRat wrote:hhh wrote:"Bob" Dobbs... Dobbie? https://en.wikipedia.org/wiki/J._R._%22Bob%22_Dobbs
It's all starting to make sense now.
Too much sense ...

I don't care what you do at home. Would you care to explain?
Offline
Ending of April confusing times.
Just asked Yoda!
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
EndeavourOS Gemini installed on my testing laptop with openbox wm. So far so good and it will be a definite keeper of installed distros.
I use Arch BTW! If it is not rolling, it is stagnant!
RebornOS, EndeavourOS, Archbang, Artix,
Linuxhub Prime, Manjaro, Void, PCLinuxOS
Offline
After trying too many icons packages for Plasma 6 recently, i think the most complete and the most suitable for my liking it is papirus-icon-theme. It's maintainers are constantly working to adapt it for Plasma 6, where the system tray has changed names and sizes i guess.
Finally, i will stick with this icons package on my KDE trip.
♫♪ JPOP listening...
Offline
Papirus is the best icon theme. Nothing beats it.
Edit: Awesome scrot by the way.
"All we are is dust in the wind, dude"
- Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
- Wayne Campbell
Offline
Papirus is the best icon theme. Nothing beats it.
Absolutely, 100% correct. Same to you as a minimalist, good job as usual.
♫♪ JPOP listening...
Offline
I think Ubuntu has done a great job with the Yaru icon/GTK/gnome-shell themes...
https://github.com/ubuntu/yaru
I still use Numix for icons, though.
I don't care what you do at home. Would you care to explain?
Offline
Dobbie03 wrote:Papirus is the best icon theme. Nothing beats it.
Absolutely, 100% correct. Same to you as a minimalist, good job as usual.
Thanks!
I still use Numix for icons, though.
Are they still maintained?
"All we are is dust in the wind, dude"
- Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
- Wayne Campbell
Offline