various updates

This commit is contained in:
Johann Dreo 2023-07-19 22:18:51 +02:00
commit 14e5ec9e92
15 changed files with 1262 additions and 253 deletions

View file

@ -38,7 +38,7 @@ defbindings("WMPlex.toplevel", {
kpress(META.."F2", "mod_query.query_exec(_)"),
-- nouveau bureau
kpress(META.."F3", "mod_query.query_workspace(_)"),
kpress(META.."F11", "mod_query.query_workspace(_)"),
-- firefox
kpress(META.."F4", "ioncore.exec_on(_, 'firefox')"),
@ -79,8 +79,8 @@ defbindings("WScreen", {
kpress(META.."Next", "ioncore.goto_next_screen()"),
-- aller au nième écran physique (attention, inversion pour 2e écran à gauche)
kpress(META.."Shift+2", "ioncore.goto_nth_screen(0)"),
kpress(META.."Shift+1", "ioncore.goto_nth_screen(1)"),
kpress(META.."Shift+1", "ioncore.goto_nth_screen(0)"),
kpress(META.."Shift+2", "ioncore.goto_nth_screen(1)"),
-- Aller au cadre suivant/précédent
kpress(META.."Right", "ioncore.goto_next(_chld, 'right')", "_chld:non-nil"),

View file

@ -42,45 +42,6 @@ mod_statusbar.create{
template="%date %systray_dock systray %workspace_pager %filler %vv_disk_ - %vv_disk_home",
}
-- -- Create a statusbar
-- mod_statusbar.create{
-- -- First screen, bottom left corner
-- screen=1,
-- pos='tr',
-- -- Set this to true if you want a full-width statusbar
-- fullsize=false,
-- -- Swallow systray windows
-- systray=true,
--
-- -- Template. Tokens %string are replaced with the value of the
-- -- corresponding meter. Currently supported meters are:
-- -- date date
-- -- load load average (1min, 5min, 15min)
-- -- load_Nmin N minute load average (N=1, 5, 15)
-- -- mail_new mail count (mbox format file $MAIL)
-- -- mail_unread mail count
-- -- mail_total mail count
-- -- mail_*_new mail count (from an alternate mail folder, see below)
-- -- mail_*_unread mail count
-- -- mail_*_total mail count
-- --
-- -- Space preceded by % adds stretchable space for alignment of variable
-- -- meter value widths. > before meter name aligns right using this
-- -- stretchable space , < left, and | centers.
-- -- Meter values may be zero-padded to a width preceding the meter name.
-- -- These alignment and padding specifiers and the meter name may be
-- -- enclosed in braces {}.
-- --
-- -- %filler causes things on the marker's sides to be aligned left and
-- -- right, respectively, and %systray is a placeholder for system tray
-- -- windows and icons.
-- --
-- --template="[ %date || load:% %>load || mail:% %>mail_new/%>mail_total ] %filler%systray",
-- --template=" %filler%systray [ load: % %>load || mail: %>mail_new/%>mail_total || %date ]",
-- template="%filler %systray_dock %systray %date",
-- }
--
-- Launch ion-statusd. This must be done after creating any statusbars
-- for necessary statusd modules to be parsed from the templates.