Parasol Air: Difference between revisions
No edit summary Tag: visualeditor |
No edit summary Tag: visualeditor |
||
| Line 29: | Line 29: | ||
[[File:CleanShot 2023-02-09 at 12.30.20@2x.png|frameless|900x900px]] | [[File:CleanShot 2023-02-09 at 12.30.20@2x.png|frameless|900x900px]] | ||
== Raspberry Pi == | |||
=== Remove (hide) mouse cursor === | |||
<syntaxhighlight lang="bash"> | |||
#!/bin/bash | |||
# hide mouse in wayland raspbian | |||
sudo apt install -y interception-tools interception-tools-compat | |||
sudo apt install -y cmake | |||
cd ~ | |||
git clone https://gitlab.com/interception/linux/p ... deaway.git | |||
cd hideaway | |||
cmake -B build -DCMAKE_BUILD_TYPE=Release | |||
cmake --build build | |||
sudo cp /home/user/hideaway/build/hideaway /usr/bin | |||
sudo chmod +x /usr/bin/hideaway | |||
cd ~ | |||
wget https://raw.githubusercontent.com/ugota ... onfig.yaml | |||
sudo cp /home/$USER/config.yaml /etc/interception/udevmon.d/config.yaml | |||
sudo systemctl restart udevmon | |||
</syntaxhighlight> | |||
Latest revision as of 12:41, 8 July 2024
Dashboards
[edit]Inhalt planen und verändern
[edit]Chrome Sign Builder Installieren und starten
Bereits installiert? Dann findest du die App unter chrome://appsError creating thumbnail: File missing Mit dem Chrome Sign Builder lassen sich die Inhalte planen und als JSON exportieren.
Parasols default JSON
[edit]<syntaxhighlight lang="json"> {
"schedule": {
"Value": [
{
"items": [],
"name": "Parasol Dashboard",
"defaultUrl": "https://os.parasol-island.com/os_airboards/app/dist/"
}
]
}
} </syntaxhighlight>
Die JSON (.txt) Datei kann anschließend von einem SuperAdmin in der Google Admin Konsole ersetzt werden.
Error creating thumbnail: File missing
Raspberry Pi
[edit]Remove (hide) mouse cursor
[edit]<syntaxhighlight lang="bash">
- !/bin/bash
- hide mouse in wayland raspbian
sudo apt install -y interception-tools interception-tools-compat sudo apt install -y cmake cd ~ git clone https://gitlab.com/interception/linux/p ... deaway.git cd hideaway cmake -B build -DCMAKE_BUILD_TYPE=Release cmake --build build sudo cp /home/user/hideaway/build/hideaway /usr/bin sudo chmod +x /usr/bin/hideaway
cd ~ wget https://raw.githubusercontent.com/ugota ... onfig.yaml sudo cp /home/$USER/config.yaml /etc/interception/udevmon.d/config.yaml sudo systemctl restart udevmon </syntaxhighlight>