Update 2023-11-08 11:02 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2023-11-08 11:02:15 +01:00
parent a06d18fb17
commit f8886aaf01
15 changed files with 189 additions and 71 deletions

View File

@@ -69,6 +69,7 @@ dopath("mod_sp")
-- dopath("mod_dock")
dopath("mod_statusbar")
dopath("mod_float-sb")
dopath("mod_switch_or_create_ws")
dopath("mod_xrandr")

View File

@@ -21,12 +21,12 @@ mod_statusbar.create {
-- %workspace_name_pager
-- %workspace_num_name_pager
template="%workspace_pager %filler %systray % %shellbar %date",
template="%workspace_pager %filler %systray % %shellbar | %date",
}
-- Launch ion-statusd. This must be done after creating any statusbars
-- for necessary statusd modules to be parsed from the templates.
-- mod_statusbar.launch_statusd {
-- shellbar,
-- date={ date_format='%a %Y-%m-%d %H:%M', },
-- date={ date_format='| %a %Y-%m-%d %H:%M', },
-- }

View File

@@ -39,7 +39,7 @@ de.defstyle("tab", {
de.substyle("active-unselected", {
shadow_colour = "#121212",
highlight_colour = "#121212",
background_colour = "#121212",
background_colour = "#181818",
foreground_colour = "#6f6f6f",
}),
de.substyle("inactive-selected", {
@@ -50,8 +50,8 @@ de.defstyle("tab", {
}),
-- de.substyle("inactive-unselected", {
shadow_colour = "#080808",
highlight_colour = "#080808",
background_colour = "#080808",
highlight_colour = "#121212",
background_colour = "#121212",
foreground_colour = "#4c4c4c",
-- }),
text_align = "center",
@@ -94,6 +94,7 @@ de.defstyle("stdisp", {
highlight_pixels = 0,
text_align = "left",
font = "xft:FuraCodeNerdFont:size=9",
background_colour = "#222222",
de.substyle("important", {
foreground_colour = "green",

View File

@@ -1,16 +0,0 @@
-- Authors: Unknown
-- License: Unknown
-- Last Changed: Unknown
--
-- first toggle fullscren, then create new
--
local function sdk_navigate_ws()
end
local function sdk_spawn_command()
end
ioncore.defbindings("WScreen", {
kpress(META.."B", toggle_floatsb)
})