fixed
This commit is contained in:
parent
c37c48e695
commit
effdfeb3b1
2 changed files with 21 additions and 17 deletions
|
@ -163,7 +163,7 @@ local emailclient = "thunderbird"
|
|||
local chat1 = "element-desktop"
|
||||
local chat2 = "whatsapp-for-linux"
|
||||
local notes = "joplin-desktop"
|
||||
local passwords = "joplin-desktop"
|
||||
local passwords = "bitwarden-desktop"
|
||||
|
||||
-- Key bindings variables
|
||||
local modkey = "Mod4"
|
||||
|
@ -233,9 +233,9 @@ awful.screen.connect_for_each_screen(function(s) beautiful.at_screen_connect(s)
|
|||
|
||||
* Bindings
|
||||
This sections is all about keyboard shortcuts or being more correct "bindings". This is the most important part of this config, all the tags are app centric, this means that they are there to host a specific application or type of applications.
|
||||
|-----------+---------+-----+--------------------+--------------------------------------------------------------|
|
||||
|-----------+---------+-----+--------------------+----------------------------------------------------------------------------------------------|
|
||||
| Tagnumber | Tagname | Key | Type | App |
|
||||
|-----------+---------+-----+--------------------+--------------------------------------------------------------|
|
||||
|-----------+---------+-----+--------------------+----------------------------------------------------------------------------------------------|
|
||||
| 1 | CODE | F1 | Text editors | Super + F1 = Emacs / Super + Shift + F1 = spacevim |
|
||||
| 2 | WEB | F2 | Web browsers | Super + F2 = firefox / Super + Shift + F2 = qutebrowser |
|
||||
| 3 | MUSIC | F3 | Music players | Super + F3 = musikcube / Super + Shift + F3 = lollypop |
|
||||
|
@ -245,9 +245,9 @@ This sections is all about keyboard shortcuts or being more correct "bindings".
|
|||
| 7 | WORK1 | XX | Work in progress 1 | Super + d = opens rofi to select a program |
|
||||
| 8 | WORK2 | XX | Work in progress 2 | Super + d = opens rofi to select a program |
|
||||
| 9 | GAME | F9 | Games | Super + F9 = retroarch |
|
||||
|-----------+---------+-----+--------------------+--------------------------------------------------------------|
|
||||
| X | XXXX | XX | tag agnostic | Super + Shift + m = pulsemixer / Super + Alt + m = alsamixer |
|
||||
|-----------+---------+-----+--------------------+--------------------------------------------------------------|
|
||||
|-----------+---------+-----+--------------------+----------------------------------------------------------------------------------------------|
|
||||
| X | XXXX | XX | tag agnostic | Super + Shift + m = pulsemixer / Super + Alt + m = alsamixer / Super + Shift + p = bitwarden |
|
||||
|-----------+---------+-----+--------------------+----------------------------------------------------------------------------------------------|
|
||||
|
||||
#+begin_src lua
|
||||
-- Mouse bindings
|
||||
|
@ -383,6 +383,8 @@ globalkeys = my_table.join(
|
|||
{description = "launch pulsemixer", group = "apps"}),
|
||||
awful.key({ modkey, altkey }, "m", function () awful.spawn(audiomixer2) end,
|
||||
{description = "launch alsamixer", group = "apps"}),
|
||||
awful.key({ modkey, altkey }, "p", function () awful.spawn(passwords) end,
|
||||
{description = "launch bitwarden", group = "apps"}),
|
||||
-- game
|
||||
awful.key({ modkey }, "F9", function () awful.util.spawn("retroarch") end,
|
||||
{description = "launch retroarch", group = "apps"}),
|
||||
|
|
|
@ -106,7 +106,7 @@ local emailclient = "thunderbird"
|
|||
local chat1 = "element-desktop"
|
||||
local chat2 = "whatsapp-for-linux"
|
||||
local notes = "joplin-desktop"
|
||||
local passwords = "joplin-desktop"
|
||||
local passwords = "bitwarden-desktop"
|
||||
|
||||
-- Key bindings variables
|
||||
local modkey = "Mod4"
|
||||
|
@ -298,6 +298,8 @@ globalkeys = my_table.join(
|
|||
{description = "launch pulsemixer", group = "apps"}),
|
||||
awful.key({ modkey, altkey }, "m", function () awful.spawn(audiomixer2) end,
|
||||
{description = "launch alsamixer", group = "apps"}),
|
||||
awful.key({ modkey, altkey }, "p", function () awful.spawn(passwords) end,
|
||||
{description = "launch bitwarden", group = "apps"}),
|
||||
-- game
|
||||
awful.key({ modkey }, "F9", function () awful.util.spawn("retroarch") end,
|
||||
{description = "launch retroarch", group = "apps"}),
|
||||
|
|
Loading…
Reference in a new issue