2021-06-10 16:28:28 +02:00
|
|
|
### install
|
|
|
|
|
|
|
|
switch to your awesome config folder, typically at:
|
|
|
|
|
|
|
|
```
|
|
|
|
cd ~/.config/awesome
|
|
|
|
```
|
|
|
|
|
|
|
|
clone this repository:
|
|
|
|
|
|
|
|
```
|
|
|
|
https://github.com/basaran/awesomewm-machina
|
|
|
|
```
|
|
|
|
|
|
|
|
and call it from your `rc.lua`
|
|
|
|
|
|
|
|
```lua
|
2021-06-10 16:51:39 +02:00
|
|
|
local machina = require('awesomewm-machina')
|
2021-06-10 16:28:28 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
append to your keybindings, typically in your `rc.lua`
|
|
|
|
|
|
|
|
```lua
|
|
|
|
root.keys(gears.table.join(config.globalkeys, machina.keys))
|
2021-06-10 16:55:06 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
default shortcuts are:
|
|
|
|
|
|
|
|
```lua
|
2021-06-11 07:28:10 +02:00
|
|
|
modkey + [ : prev in region
|
|
|
|
modkey + ] : next in region
|
2021-06-11 01:20:09 +02:00
|
|
|
|
2021-06-10 16:55:06 +02:00
|
|
|
modkey + insert : move top left
|
2021-06-10 16:58:56 +02:00
|
|
|
modkey + delete : move bottom left
|
2021-06-10 16:55:06 +02:00
|
|
|
modkey + home : center as float
|
|
|
|
modkey + pageup : move top right
|
|
|
|
modkey + pagedown : move bottom right
|
2021-06-11 01:20:09 +02:00
|
|
|
|
|
|
|
modkey + j : stack friendly left
|
|
|
|
modkey + k : stack friendly down
|
|
|
|
modkey + l : stack friendly right
|
|
|
|
modkey + i : stack friendly up
|
2021-06-10 18:42:39 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### Preview
|
|
|
|
https://user-images.githubusercontent.com/30809170/121564284-48bf6d80-c9e9-11eb-982c-6abfbf1fddf1.mp4
|
|
|
|
|
|
|
|
|
|
|
|
|