feat: improve note searching
This commit is contained in:
parent
e73648904b
commit
e1e73af5a7
gui
|
@ -409,6 +409,16 @@ globalkeys = gears.table.join(
|
|||
{ description = 'decrease backlight', group = 'control'} ),
|
||||
awful.key({}, 'F1', function () awful.spawn.with_shell("flameshot gui") end,
|
||||
{ description = 'toggle mute', group = 'hotkeys'} ),
|
||||
awful.key({ modkey }, '=', volume_widget.inc,
|
||||
{ description = 'volume up', group = 'hotkeys' } ),
|
||||
awful.key({ modkey }, '-', volume_widget.dec,
|
||||
{ description = 'volume down', group = 'hotkeys'} ),
|
||||
awful.key({ modkey }, '\\', function() awful.spawn.with_shell("mpc toggle") end,
|
||||
{ description = 'toggle play', group = 'hotkeys'} ),
|
||||
awful.key({ modkey }, ')', function() awful.spawn.with_shell("sudo light -A 5") end,
|
||||
{ description = 'increase backlight', group = 'control'} ),
|
||||
awful.key({ modkey }, '(', function() awful.spawn.with_shell("sudo light -U 5") end,
|
||||
{ description = 'decrease backlight', group = 'control'} ),
|
||||
--awful.key({ modkey, }, "s", hotkeys_popup.show_help,
|
||||
--{description = "show help", group="awesome"}),
|
||||
awful.key({ modkey, }, "comma", awful.tag.viewprev,
|
||||
|
|
|
@ -16,6 +16,8 @@ configuration{
|
|||
display-Network: " Network";
|
||||
sidebar-mode: true;
|
||||
matching: "fuzzy";
|
||||
sort: true;
|
||||
sorting-method: "fzf";
|
||||
|
||||
filebrowser {
|
||||
sorting-method: "name";
|
||||
|
@ -72,7 +74,7 @@ listview {
|
|||
border: 0px 0px 0px;
|
||||
padding: 6px 0px 0px;
|
||||
margin: 10px 0px 0px 20px;
|
||||
columns: 2;
|
||||
columns: 1;
|
||||
background-color: @bg-col;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user