4 Commits
2.0.0 ... main

Author SHA1 Message Date
0739c3a549 Update README.md 2026-03-12 08:03:43 -04:00
6c220117f3 Updated version numbers 2026-03-12 07:55:16 -04:00
60d3ce38b4 Added full path to shutdown commands 2026-03-12 07:52:04 -04:00
5766ffd985 Corrected bad path to kiosk_rightclickmenu 2026-03-06 09:26:17 -05:00
4 changed files with 10 additions and 10 deletions

View File

@@ -37,17 +37,17 @@ These can be any Debian based Linux distribution. Debian, Linux Mint, Ubuntu, an
1. Download OpenKiosk 1. Download OpenKiosk
The easiest way is to run `wget https://gitserver.thermionic.net/rod.wright/OpenKiosk/releases/download/1.1.0/OpenKiosk-2.0.0.tar.gz` The easiest way is to run `wget https://gitserver.thermionic.net/rod.wright/OpenKiosk/releases/download/2.0.1/OpenKiosk-2.0.1.tar.gz`
or visit https://gitserver.thermionic.net/rod.wright/OpenKiosk/releases to download the specific package version you'd like to use. or visit https://gitserver.thermionic.net/rod.wright/OpenKiosk/releases to download the specific package version you'd like to use.
2. Extract the package 2. Extract the package
`tar -zxvf OpenKiosk-2.0.0.tar.gz` `tar -zxvf OpenKiosk-2.0.1.tar.gz`
3. Change to the extracted package directory 3. Change to the extracted package directory
`cd OpenKiosk-2.0.0` `cd OpenKiosk-2.0.1`
4. Run the installer as superuser 4. Run the installer as superuser

View File

@@ -1 +1 @@
2.0.0 2.0.1

View File

@@ -329,13 +329,13 @@
<!-- Enable poweroff with ctrl-alt-shift-del --> <!-- Enable poweroff with ctrl-alt-shift-del -->
<keybind key="C-A-S-Delete"> <keybind key="C-A-S-Delete">
<action name="Execute"> <action name="Execute">
<command>shutdown -P now</command> <command>/usr/sbin/shutdown -P now</command>
</action> </action>
</keybind> </keybind>
<!-- Enable reboot with ctrl-alt-shift-del --> <!-- Enable reboot with ctrl-alt-shift-del -->
<keybind key="C-A-S-Insert"> <keybind key="C-A-S-Insert">
<action name="Execute"> <action name="Execute">
<command>shutdown -r now</command> <command>/usr/sbin/shutdown -r now</command>
</action> </action>
</keybind> </keybind>
<chainQuitKey>C-g</chainQuitKey> <chainQuitKey>C-g</chainQuitKey>
@@ -358,7 +358,7 @@
<context name="root"> <context name="root">
<mousebind button="Right" action="Press"> <mousebind button="Right" action="Press">
<action name="Execute"> <action name="Execute">
<command>/usr/local/sbin/kiosk_rightclickmenu</command> <command>/usr/local/bin/kiosk_rightclickmenu</command>
</action> </action>
</mousebind> </mousebind>
</context> </context>
@@ -366,7 +366,7 @@
<context name="Client"> <context name="Client">
<mousebind button="Right" action="Press"> <mousebind button="Right" action="Press">
<action name="Execute"> <action name="Execute">
<command>/usr/local/sbin/kiosk_rightclickmenu</command> <command>/usr/local/bin/kiosk_rightclickmenu</command>
</action> </action>
</mousebind> </mousebind>
</context> </context>
@@ -374,7 +374,7 @@
<context name="Frame"> <context name="Frame">
<mousebind button="Right" action="Press"> <mousebind button="Right" action="Press">
<action name="Execute"> <action name="Execute">
<command>/usr/local/sbin/kiosk_rightclickmenu</command> <command>/usr/local/bin/kiosk_rightclickmenu</command>
</action> </action>
</mousebind> </mousebind>
</context> </context>

View File

@@ -7,7 +7,7 @@
# SPDX-License-Identifier: GPL-2.0 # SPDX-License-Identifier: GPL-2.0
APP_NAME="OpenKiosk" APP_NAME="OpenKiosk"
APP_VERSION="2.0.0" APP_VERSION="2.0.1"
function clean_exit() { function clean_exit() {