Skip to content

Commit

Permalink
fix wm split bar being presented over windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Percslol committed Sep 26, 2024
1 parent 7963ef4 commit cbd2314
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/fsapp.app/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ self.mime = await anura.import("npm:mime");
self.currentlySelected = [];
self.clipboard = [];
self.removeAfterPaste = false;
self.fs = anura.fs;
self.filePicker = false;
self.fs = anura.fs;
self.Buffer = Filer.Buffer;
self.sh = new anura.fs.Shell();

Expand Down
2 changes: 1 addition & 1 deletion documentation/appdevt.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ if (instance.manifest.marketplace) {

dreamland.js is a reactive JSX-inspired rendering library with no virtual dom and no build step. You can find the source code [here](https://github.com/MercuryWorkshop/dreamlandjs) and the documentation [here](https://dreamland.js.org/).

AnuraOS itself uses dreamland for the desktop environment and core system apps, and you can use it in your apps as well. To include dreamland in your app, you can add the following to the `head` section of your `index.html` file:
AnuraOS itself uses dreamland for the desktop environment and core system apps, and you can use it in your apps as well. To include dreamland in your app without a bundler, you can add the following to the `head` section of your `index.html` file:

```html
<script src="/libs/dreamland/all.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/AliceWM.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
width: 8px;
position: fixed;
transition: background 0.2s;
z-index: 9999;
z-index: 0;
cursor: ew-resize;
display: flex;
align-items: center;
Expand Down

0 comments on commit cbd2314

Please sign in to comment.