Fix: Convert phantom submodules to regular files

This commit is contained in:
jrosh 2025-07-18 15:13:19 +02:00
commit 3a1560efac
237 changed files with 11806 additions and 2 deletions

View file

@ -0,0 +1,441 @@
--[[
Cloned from Multicolor Awesome WM theme 2.0
github.com/lcpz
--]]
local gears = require("gears")
local lain = require("lain")
local awful = require("awful")
local wibox = require("wibox")
local dpi = require("beautiful.xresources").apply_dpi
local scratchpad = require("scratchpad")
local os = os
local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
local theme = {}
theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/Mao"
theme.wallpaper = theme.confdir .. "/wall.png"
theme.font = "BlexMono Nerd Font Mono 10"
theme.menu_bg_normal = "#000000"
theme.menu_bg_focus = "#000000"
theme.bg_normal = "#000000"
theme.bg_focus = "#000000"
theme.bg_urgent = "#000000"
theme.fg_normal = "#aaaaaa"
theme.fg_focus = "#ff8c00"
theme.fg_urgent = "#af1d18"
theme.fg_minimize = "#ffffff"
theme.border_width = dpi(1)
theme.border_normal = "#1c2022"
theme.border_focus = "#464646"
theme.border_marked = "#3ca4d8"
theme.menu_border_width = 0
theme.menu_width = dpi(130)
theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png"
theme.menu_fg_normal = "#aaaaaa"
theme.menu_fg_focus = "#ff8c00"
theme.menu_bg_normal = "#050505dd"
theme.menu_bg_focus = "#050505dd"
theme.widget_temp = theme.confdir .. "/icons/temp.png"
theme.widget_uptime = theme.confdir .. "/icons/ac.png"
theme.widget_cpu = theme.confdir .. "/icons/cpu.png"
theme.widget_weather = theme.confdir .. "/icons/dish.png"
theme.widget_fs = theme.confdir .. "/icons/fs.png"
theme.widget_mem = theme.confdir .. "/icons/mem.png"
theme.widget_note = theme.confdir .. "/icons/note.png"
theme.widget_note_on = theme.confdir .. "/icons/note_on.png"
theme.widget_netdown = theme.confdir .. "/icons/net_down.png"
theme.widget_netup = theme.confdir .. "/icons/net_up.png"
theme.widget_mail = theme.confdir .. "/icons/mail.png"
theme.widget_batt = theme.confdir .. "/icons/bat.png"
theme.widget_clock = theme.confdir .. "/icons/clock.png"
theme.widget_vol = theme.confdir .. "/icons/spkr.png"
theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png"
theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png"
theme.tasklist_plain_task_name = true
theme.tasklist_disable_icon = true
theme.useless_gap = dpi(4)
theme.layout_tile = theme.confdir .. "/icons/tile.png"
theme.layout_tilegaps = theme.confdir .. "/icons/tilegaps.png"
theme.layout_tileleft = theme.confdir .. "/icons/tileleft.png"
theme.layout_tilebottom = theme.confdir .. "/icons/tilebottom.png"
theme.layout_tiletop = theme.confdir .. "/icons/tiletop.png"
theme.layout_fairv = theme.confdir .. "/icons/fairv.png"
theme.layout_fairh = theme.confdir .. "/icons/fairh.png"
theme.layout_spiral = theme.confdir .. "/icons/spiral.png"
theme.layout_dwindle = theme.confdir .. "/icons/dwindle.png"
theme.layout_max = theme.confdir .. "/icons/max.png"
theme.layout_fullscreen = theme.confdir .. "/icons/fullscreen.png"
theme.layout_magnifier = theme.confdir .. "/icons/magnifier2.png"
theme.layout_floating = theme.confdir .. "/icons/floating.png"
theme.titlebar_close_button_normal = theme.confdir .. "/icons/titlebar/close_normal.png"
theme.titlebar_close_button_focus = theme.confdir .. "/icons/titlebar/close_focus.png"
theme.titlebar_minimize_button_normal = theme.confdir .. "/icons/titlebar/minimize_normal.png"
theme.titlebar_minimize_button_focus = theme.confdir .. "/icons/titlebar/minimize_focus.png"
theme.titlebar_ontop_button_normal_inactive = theme.confdir .. "/icons/titlebar/ontop_normal_inactive.png"
theme.titlebar_ontop_button_focus_inactive = theme.confdir .. "/icons/titlebar/ontop_focus_inactive.png"
theme.titlebar_ontop_button_normal_active = theme.confdir .. "/icons/titlebar/ontop_normal_active.png"
theme.titlebar_ontop_button_focus_active = theme.confdir .. "/icons/titlebar/ontop_focus_active.png"
theme.titlebar_sticky_button_normal_inactive = theme.confdir .. "/icons/titlebar/sticky_normal_inactive.png"
theme.titlebar_sticky_button_focus_inactive = theme.confdir .. "/icons/titlebar/sticky_focus_inactive.png"
theme.titlebar_sticky_button_normal_active = theme.confdir .. "/icons/titlebar/sticky_normal_active.png"
theme.titlebar_sticky_button_focus_active = theme.confdir .. "/icons/titlebar/sticky_focus_active.png"
theme.titlebar_floating_button_normal_inactive = theme.confdir .. "/icons/titlebar/floating_normal_inactive.png"
theme.titlebar_floating_button_focus_inactive = theme.confdir .. "/icons/titlebar/floating_focus_inactive.png"
theme.titlebar_floating_button_normal_active = theme.confdir .. "/icons/titlebar/floating_normal_active.png"
theme.titlebar_floating_button_focus_active = theme.confdir .. "/icons/titlebar/floating_focus_active.png"
theme.titlebar_maximized_button_normal_inactive = theme.confdir .. "/icons/titlebar/maximized_normal_inactive.png"
theme.titlebar_maximized_button_focus_inactive = theme.confdir .. "/icons/titlebar/maximized_focus_inactive.png"
theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png"
theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png"
local markup = lain.util.markup
-- Textclock
os.setlocale(os.getenv("LANG")) -- to localize the clock
local clockicon = wibox.widget.imagebox(theme.widget_clock)
local mytextclock =
wibox.widget.textclock(markup("#7788af", "%A %d %B ") .. markup("#ab7367", ">") .. markup("#de5e1e", " %H:%M "))
mytextclock.font = theme.font
-- Calendar
theme.cal = lain.widget.cal({
attach_to = { mytextclock },
notification_preset = {
font = "BlexMono Nerd Font Mono 10",
fg = theme.fg_normal,
bg = theme.bg_normal,
},
})
-- Weather
--[[ to be set before use
local weathericon = wibox.widget.imagebox(theme.widget_weather)
theme.weather = lain.widget.weather({
city_id = 2643743, -- placeholder (London)
notification_preset = { font = "Terminus 10", fg = theme.fg_normal },
weather_na_markup = markup.fontfg(theme.font, "#eca4c4", "N/A "),
settings = function()
descr = weather_now["weather"][1]["description"]:lower()
units = math.floor(weather_now["main"]["temp"])
widget:set_markup(markup.fontfg(theme.font, "#eca4c4", descr .. " @ " .. units .. "°C "))
end
})
--]]
-- / fs
-- / needs Gio/Glib >= 2.54
local fsicon = wibox.widget.imagebox(theme.widget_fs)
theme.fs = lain.widget.fs({
notification_preset = { font = theme.font, fg = theme.fg_normal },
settings = function()
widget:set_markup(markup.fontfg(theme.font, "#80d9d8", string.format("%.1f", fs_now["/"].percentage) .. "% "))
end,
})
-- Mail IMAP check
--[[ to be set before use
local mailicon = wibox.widget.imagebox()
theme.mail = lain.widget.imap({
timeout = 180,
server = "server",
mail = "mail",
password = "keyring get mail",
settings = function()
if mailcount > 0 then
mailicon:set_image(theme.widget_mail)
widget:set_markup(markup.fontfg(theme.font, "#cccccc", mailcount .. " "))
else
widget:set_text("")
--mailicon:set_image() -- not working in 4.0
mailicon._private.image = nil
mailicon:emit_signal("widget::redraw_needed")
mailicon:emit_signal("widget::layout_changed")
end
end
})
--]]
-- CPU
local cpuicon = wibox.widget.imagebox(theme.widget_cpu)
local cpu = lain.widget.cpu({
settings = function()
widget:set_markup(markup.fontfg(theme.font, "#e33a6e", cpu_now.usage .. "% "))
end,
})
-- Coretemp
local tempicon = wibox.widget.imagebox(theme.widget_temp)
local temp = lain.widget.temp({
settings = function()
widget:set_markup(markup.fontfg(theme.font, "#f1af5f", coretemp_now .. "°C "))
end,
})
-- Battery
local baticon = wibox.widget.imagebox(theme.widget_batt)
local bat = lain.widget.bat({
settings = function()
local perc = bat_now.perc ~= "N/A" and bat_now.perc .. "%" or bat_now.perc
if bat_now.ac_status == 1 then
widget:set_markup(markup.fontfg(theme.font, "#87af5f", perc .. " "))
else
widget:set_markup(markup.fontfg(theme.font, theme.fg_normal, perc .. " "))
end
end,
})
-- ALSA volume
local volicon = wibox.widget.imagebox(theme.widget_vol)
theme.volume = lain.widget.alsa({
settings = function()
if volume_now.status == "off" then
-- When muted, show 0% in red
widget:set_markup(markup.fontfg(theme.font, "#ff0000", "0% "))
else
-- Normal volume display in blue
widget:set_markup(markup.fontfg(theme.font, "#7493d2", volume_now.level .. "% "))
end
end,
})
-- Add click functionality to open alsamixer in scratchpad
theme.volume.widget:buttons(gears.table.join(awful.button({}, 1, function()
geometry = geometry or { width = 0.8, height = 0.6, x = 0.1, y = 0.2 }
scratchpad.toggle("alacritty --class=alsamixer-scratchpad -e alsamixer", geometry)
end)))
-- Network widget (consolidated)
local network_widget = wibox.widget({
layout = wibox.layout.fixed.horizontal,
{
widget = wibox.widget.imagebox,
image = theme.widget_netdown,
id = "netdownicon",
},
{
widget = wibox.widget.textbox,
id = "netdowninfo",
},
{
widget = wibox.widget.imagebox,
image = theme.widget_netup,
id = "netupicon",
},
{
widget = wibox.widget.textbox,
id = "netupinfo",
},
buttons = gears.table.join(awful.button({}, 1, function()
geometry = geometry or { width = 0.6, height = 0.6, x = 0.2, y = 0.2 }
scratchpad.toggle("alacritty --class=nmtui-scratchpad -e sh -c 'resize > /dev/null 2>&1; nmtui'", geometry)
end)),
})
-- Create the network monitor widget separately and connect it
local netupinfo_widget = lain.widget.net({
settings = function()
-- Update the network widget's text widgets
local netdown_widget = network_widget:get_children_by_id("netdowninfo")[1]
local netup_widget = network_widget:get_children_by_id("netupinfo")[1]
if netup_widget then
netup_widget:set_markup(markup.fontfg(theme.font, "#e54c62", net_now.sent .. " "))
end
if netdown_widget then
netdown_widget:set_markup(markup.fontfg(theme.font, "#87af5f", net_now.received .. " "))
end
end,
})
-- MEM
local memicon = wibox.widget.imagebox(theme.widget_mem)
local memory = lain.widget.mem({
settings = function()
widget:set_markup(markup.fontfg(theme.font, "#e0da37", mem_now.used .. "M "))
end,
})
function theme.at_screen_connect(s)
-- Quake application
s.quake = lain.util.quake({ app = awful.util.terminal })
-- If wallpaper is a function, call it with the screen
local wallpaper = theme.wallpaper
if type(wallpaper) == "function" then
wallpaper = wallpaper(s)
end
gears.wallpaper.maximized(wallpaper, s, true)
-- Tags
awful.tag(awful.util.tagnames, s, awful.layout.layouts[2])
-- Create a promptbox for each screen
s.mypromptbox = awful.widget.prompt()
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
-- We need one layoutbox per screen.
s.mylayoutbox = awful.widget.layoutbox(s)
s.mylayoutbox:buttons(gears.table.join(
awful.button({}, 1, function()
awful.layout.inc(1)
end),
awful.button({}, 2, function()
awful.layout.set(awful.layout.layouts[1])
end),
awful.button({}, 3, function()
awful.layout.inc(-1)
end),
awful.button({}, 4, function()
awful.layout.inc(1)
end),
awful.button({}, 5, function()
awful.layout.inc(-1)
end)
))
-- Create a taglist widget
s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
-- Create a tasklist widget
s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
s.mywibox = awful.wibar({
position = "top",
screen = s,
height = dpi(20),
bg = theme.bg_normal,
fg = theme.fg_normal,
})
-- Create the wibox
-- Add widgets to the wibox
s.mywibox:setup({
layout = wibox.layout.align.horizontal,
{ -- Left widgets
layout = wibox.layout.fixed.horizontal,
s.mytaglist,
s.mypromptbox,
},
--s.mytasklist, -- Middle widget
nil,
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
wibox.widget.systray(),
--mailicon,
--theme.mail.widget,
network_widget,
volicon,
theme.volume.widget,
memicon,
memory.widget,
cpuicon,
cpu.widget,
fsicon,
theme.fs.widget,
--weathericon,
--theme.weather.widget,
tempicon,
temp.widget,
baticon,
bat.widget,
clockicon,
mytextclock,
s.mylayoutbox,
},
})
-- Create the bottom wibox (initially hidden)
s.mybottomwibox = awful.wibar({
position = "bottom",
screen = s,
border_width = 0,
height = dpi(16),
bg = theme.bg_normal,
fg = theme.fg_normal,
visible = false, -- Start hidden
ontop = true, -- Show on top of clients
type = "dock", -- Don't reserve space
})
-- Add widgets to the bottom wibox
s.mybottomwibox:setup({
layout = wibox.layout.align.horizontal,
{ -- Left widgets
layout = wibox.layout.fixed.horizontal,
},
s.mytasklist, -- Middle widget
})
-- Auto-hide functionality
local hide_timer = gears.timer({
timeout = 0.5, -- Hide after 0.5 seconds
single_shot = true,
callback = function()
s.mybottomwibox.visible = false
end,
})
local function show_bottom_bar()
s.mybottomwibox.visible = true
hide_timer:stop()
end
local function start_hide_timer()
hide_timer:again()
end
-- Connect mouse signals to show/hide the bar
s.mybottomwibox:connect_signal("mouse::enter", function()
hide_timer:stop()
end)
s.mybottomwibox:connect_signal("mouse::leave", function()
start_hide_timer()
end)
-- Create an invisible trigger area at the bottom left corner of the screen
local trigger_size = 5 -- pixel trigger area
s.bottom_trigger = wibox({
x = s.geometry.x,
y = s.geometry.y + s.geometry.height - trigger_size,
width = trigger_size,
height = trigger_size,
visible = true,
ontop = true,
opacity = 0, -- Make it invisible
screen = s,
type = "dock", -- Don't reserve space
})
s.bottom_trigger:connect_signal("mouse::enter", function()
show_bottom_bar()
end)
-- Alternative method using root window mouse motion (more reliable)
-- Comment out the trigger area above and uncomment this if preferred:
--[[
local function check_mouse_position()
local coords = mouse.coords()
local screen_geo = s.geometry
-- Check if mouse is at the bottom edge of this screen
if coords.x >= screen_geo.x and
coords.x < screen_geo.x + screen_geo.width and
coords.y >= screen_geo.y + screen_geo.height - 5 then -- 5 pixel trigger zone
show_bottom_bar()
end
end
-- Connect to mouse motion
local mouse_timer = gears.timer({
timeout = 0.1, -- Check every 0.1 seconds
autostart = true,
callback = check_mouse_position
})
--]]
end
return theme