Skip to content

Commit

Permalink
Fixed big issue with startup and added fullscreen module
Browse files Browse the repository at this point in the history
  • Loading branch information
bkbilly committed Jul 6, 2023
1 parent 71377f8 commit b10fe52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 2 additions & 3 deletions lnxlink/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@ def on_connect(self, client, userdata, flags, rc):
)
if self.config['mqtt']['discovery']['enabled']:
self.setup_discovery()
if self.kill:
self.kill = False
self.monitor_run_thread()
self.kill = False
self.monitor_run_thread()

def disconnect(self, *args):
'''Reports to MQTT server that the service has stopped'''
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "lnxlink"
version = "2023.7.0"
version = "2023.7.1"
description = "Internet Of Things (IOT) integration with Linux using MQTT"
readme = "README.md"
keywords = ["lnxlink"]
Expand Down Expand Up @@ -34,7 +34,8 @@ dependencies = [
"mss>=7.0.1",
"pyamdgpuinfo>=2.1.4",
"nvsmi>=0.4.2",
"distro>=1.7.0"
"distro>=1.7.0",
"ewmh>=0.1.6"
]


Expand Down

0 comments on commit b10fe52

Please sign in to comment.