diff --git a/debian/changelog b/debian/changelog index 3955f5d..843f029 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +tileos-settings-sway (1.0.14~tileos) unstable; urgency=medium + + * Fix appending user keybindings to help overlay + + -- Aleksey Samoilov Sun, 25 Feb 2024 19:22:45 +0400 + tileos-settings-sway (1.0.13~tileos) unstable; urgency=medium * Change wallpaper diff --git a/usr/share/sway/scripts/sbdp.py b/usr/share/sway/scripts/sbdp.py index 4a0a09c..4a34773 100755 --- a/usr/share/sway/scripts/sbdp.py +++ b/usr/share/sway/scripts/sbdp.py @@ -2,6 +2,7 @@ import sys import glob import re +import os from typing import Text import json @@ -26,6 +27,7 @@ def readFile(filePath): for line in allLines: if re.search(r'^include\s+(.+?)$', line): nextPath = re.findall(r'^include\s+(.+?)$', line)[0] + nextPath = os.path.expandvars(nextPath) finalLines = finalLines + readFile(nextPath) else: finalLines = finalLines + [line]