Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions build-site
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ build_src_pages () {
for md in src/*.md; do
html=${md##*/}
html="${DEPLOY_DIR}/${html/%.md/.html}"

# only build files that have changed
[[ $html -ot $md ]] || continue

echo "Converting $md to $html"

cat src/template_pre.html > "$html"
Expand All @@ -21,6 +25,9 @@ build_man_pages () {
for scd in labwc/docs/*.scd; do
html=${scd##*/}
html="${DEPLOY_DIR}/${html/%.scd/.html}"

[[ $html -ot $scd ]] || continue

echo "Converting $scd to $html"

sed 's/sans-serif;/monospace;/' src/template_pre.html > "$html"
Expand Down
45 changes: 13 additions & 32 deletions src/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,6 @@ This document contains some popular settings that you may wish to adopt.

## Keybinds

### Unbind alt + arrow

...because they interfere with brower forward/backward binds

```
<keybind key="A-Right"/>
<keybind key="A-Left"/>
<keybind key="A-Up"/>
<keybind key="A-Down"/>
```

### Lock Session

```
Expand All @@ -59,6 +48,15 @@ Supported since `0.7.3`
</keybind>
```

or

```
<keybind key="Super_L" onRelease="yes">
<action name="ShowMenu" menu="root-menu"/>
</keybind>
```


### Take Screenshot

```
Expand All @@ -85,16 +83,16 @@ Supported since `0.7.3`
### MoveToEdge, ShrinkToEdge and GrowToEdge

```
<keybind key="W-Left">
<keybind key="C-W-Left">
<action name="MoveToEdge" direction="left" snapWindows="true"/>
</keybind>
<keybind key="W-Right">
<keybind key="C-W-Right">
<action name="MoveToEdge" direction="right" snapWindows="true"/>
</keybind>
<keybind key="W-Up">
<keybind key="C-W-Up">
<action name="MoveToEdge" direction="up" snapWindows="true"/>
</keybind>
<keybind key="W-Down">
<keybind key="C-W-Down">
<action name="MoveToEdge" direction="down" snapWindows="true"/>
</keybind>
<keybind key="W-S-Left">
Expand All @@ -111,23 +109,6 @@ Supported since `0.7.3`
</keybind>
```

### SnapToEdge

```
<keybind key="C-W-Left">
<action name="SnapToEdge" direction="left"/>
</keybind>
<keybind key="C-W-Right">
<action name="SnapToEdge" direction="right"/>
</keybind>
<keybind key="C-W-Up">
<action name="SnapToEdge" direction="up"/>
</keybind>
<keybind key="C-W-Down">
<action name="SnapToEdge" direction="down"/>
</keybind>
```

## Mousebinds

### Unfosus all windows when clicking on desktop
Expand Down