Recent activity

[PATCH sxmo-utils] Add SXMO_VIBRATE_DEV to longcheer deviceprofile 10 months ago

From Timotej Lazar to ~mil/sxmo-devel

---
 scripts/deviceprofiles/sxmo_deviceprofile_longcheer,l8150.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/deviceprofiles/sxmo_deviceprofile_longcheer,l8150.sh b/scripts/deviceprofiles/sxmo_deviceprofile_longcheer,l8150.sh
index b9af497..de86a69 100755
--- a/scripts/deviceprofiles/sxmo_deviceprofile_longcheer,l8150.sh
+++ b/scripts/deviceprofiles/sxmo_deviceprofile_longcheer,l8150.sh
@@ -6,6 +6,7 @@
export SXMO_TOUCHSCREEN_ID="10"
export SXMO_POWER_BUTTON="0:0:pm8941_pwrkey"
export SXMO_VOLUME_BUTTON="1:1:GPIO_Buttons 0:0:pm8941_resin"
export SXMO_VIBRATE_DEV="/dev/input/by-path/platform-200f000.spmi-platform-200f000.spmi:pmic@1:vibrator@c000-event"
export SXMO_ROTATION_GRAVITY="500"
[message trimmed]

[PATCH] main/conntrack-tools: change init script to declarative style 2 years ago

From Timotej Lazar to ~sircmpwn/alpine-aports

---
Mostly because I spent too much time figuring out why vrf="…" in conf.d
didn’t work. :)

Thanks!

 main/conntrack-tools/APKBUILD         | 10 +++++---
 main/conntrack-tools/conntrackd.initd | 35 ++++++++++++---------------
 2 files changed, 21 insertions(+), 24 deletions(-)

diff --git a/main/conntrack-tools/APKBUILD b/main/conntrack-tools/APKBUILD
index e1ad0fa20c..6ee991ade9 100644
--- a/main/conntrack-tools/APKBUILD
+++ b/main/conntrack-tools/APKBUILD
[message trimmed]

[PATCH sxmo-utils] smxo_appmenu: replace if/grep with case in programchoicesinit 3 years ago

From Timotej Lazar to ~mil/sxmo-devel

On a PinePhone, this function took ~90 ms before the change and ~45 ms
after.
---
 scripts/core/sxmo_appmenu.sh | 55 +++++++++++++++++++++++-------------
 1 file changed, 36 insertions(+), 19 deletions(-)

diff --git a/scripts/core/sxmo_appmenu.sh b/scripts/core/sxmo_appmenu.sh
index b31c2aa..154415c 100755
--- a/scripts/core/sxmo_appmenu.sh
+++ b/scripts/core/sxmo_appmenu.sh
@@ -14,14 +14,15 @@ gracefulexit() {

programchoicesinit() {
	XPROPOUT="$(xprop -id "$(xdotool getactivewindow)")"
[message trimmed]