diff --git a/mybindings.lua b/mybindings.lua index 3899026..6f5c303 100644 --- a/mybindings.lua +++ b/mybindings.lua @@ -42,12 +42,15 @@ local mpdmap = { } local progmap = { - {"f", binder.spawn(conf.cmd.browser), "Browser" }, + {"f", binder.spawn("firefox"), "Firefox" }, + {"q", binder.spawn("qutebrowser"), "Qutebrowser" }, + --{"b", binder.spawn(conf.cmd.browser), "Browser" }, {"i", binder.spawn(conf.cmd.irc_client), "IRC" }, + {"m", binder.spawn(conf.cmd.mail_client), "Mail" }, {"t", binder.spawn("telegram"), "Telegram" }, {"w", binder.spawn("wire"), "Wire" }, - {"m", binder.spawn(conf.cmd.mail_client), "Mail" }, - {"s", binder.spawn("steam"), "Steam" } + {"s", binder.spawn("steam"), "Steam" }, + {"n", binder.spawn("netflix"), "Netflix" } } local home = os.getenv("HOME") diff --git a/rc.lua b/rc.lua index b586d90..43526d3 100644 --- a/rc.lua +++ b/rc.lua @@ -61,8 +61,8 @@ audiowheel = require("audiowheel")-- { bg = "#ffff00aa" } -- {{{ Key bindings binder = require("separable.binder") -binder.modal.set_location("bottom","left") -binder.modal.set_x_offset(18) +binder.modal.set_location("bottom_left") +--binder.modal.set_x_offset(18) binder.add_default_bindings() binder.add_bindings(tags.create_bindings()) diff --git a/rules.lua b/rules.lua index 664e277..8b898e0 100644 --- a/rules.lua +++ b/rules.lua @@ -44,7 +44,7 @@ awful.rules.rules = { end end }, - { rule = { class = "qutebrowser" }, properties = { tag = "3" } }, + { rule = { class = "qutebrowser" }, properties = { tag = "2" } }, --{ rule = { name = "", class = "jetbrains-idea", type = "dialog" }, -- properties = { placement = false }, -- callback = function(c) @@ -142,7 +142,7 @@ awful.rules.rules = { callback = awful.client.setslave }, { - rule = { instance = "Gmutt" }, + rule_any = { instance = {"Gmutt"}, name = {"Gmutt"} }, properties = { tag = "4" } diff --git a/theme.lua b/theme.lua index 2635f92..27ecd5a 100644 --- a/theme.lua +++ b/theme.lua @@ -25,6 +25,11 @@ theme.border_focus = "#aaaaff" theme.border_marked = "#cc9393" -- }}} +-- {{{ Modebox +theme.modebox_border_width = 2 +theme.modebox_border = "#aaaaff" +-- }}} + -- {{{ Titlebars theme.titlebar_bg_focus = "#3F3F3F" theme.titlebar_bg_normal = "#3F3F3F"