Update 2023-01-01 10:16 OpenBSD/amd64

This commit is contained in:
c0dev0id
2023-01-01 10:16:54 +01:00
parent 9973497013
commit 6a461712ba
13 changed files with 73 additions and 14 deletions

View File

@@ -2,7 +2,7 @@
-- Ion mod_sp configuration file
--
mod_sp.set_size(1600, 800);
mod_sp.set_size(2400, 1200);
defbindings("WScreen", {
bdoc("Toggle scratchpad."),

View File

@@ -13,7 +13,7 @@ de.defstyle("*", {
highlight_pixels = 1,
shadow_pixels = 1,
border_style = "elevated",
font = "-nil-profont-medium-r-normal---220-72-72-c-120-iso8859-1",
font = "xft:FuraCodeNerdFont:size=18",
text_align = "center",
})

View File

@@ -13,7 +13,7 @@ floatsb=floatsbscr:attach_new{
unnumbered=true,
sizepolicy='southwest',
template='%workspace_pager',
passive=true,
passive=false,
level=2
}

View File

@@ -7,6 +7,7 @@ function get_shell(cmd)
handle:close()
if not result then
return "(" .. error .. ")" -- chance of interrupted system call
-- if not compiled with SA_RESTART signal
end
return result
end
@@ -14,8 +15,8 @@ end
local timer = statusd.create_timer()
local function update()
statusd.inform("shellbar", get_shell('/home/sdk/.notion/shellbar.sh'))
timer:set(5000, update)
statusd.inform("shellbar", get_shell('cbar -1'))
timer:set(1000, update)
end
update()