~reedwade

~reedwade/wee-matter-devel

Last active 2 years ago

~reedwade/wee-matter-discuss

Last active 3 years ago

~reedwade/cogitatis

Last active 3 years ago

~reedwade/test_nul

Last active 4 years ago

~reedwade/wee-matter-announce

Last active 4 years ago

~reedwade/mopidy-multisonic-discuss

Last active 4 years ago

~reedwade/mopidy-multisonic-devel

Last active 4 years ago

~reedwade/mopidy-multisonic-announce

Last active 4 years ago
View more

Recent activity

[PATCH sxmo-utils] Reduce wifi reconnection time after deep sleep #150 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_resetscaninterval.sh | 11 -----------
 scripts/core/sxmo_screenlock.sh        |  5 ++++-
 2 files changed, 4 insertions(+), 12 deletions(-)
 delete mode 100755 scripts/core/sxmo_resetscaninterval.sh

diff --git a/scripts/core/sxmo_resetscaninterval.sh b/scripts/core/sxmo_resetscaninterval.sh
deleted file mode 100755
index 20384c2..0000000
--- a/scripts/core/sxmo_resetscaninterval.sh
@@ -1,11 +0,0 @@
#!/bin/sh
[message trimmed]

[PATCH sxmo-utils] Make rtc wake interval to work again 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 configs/default_hooks/rtcwake   | 41 +++++++++++++++++++++++++++++
 scripts/core/sxmo_screenlock.sh | 46 +++++++++++++++++++++++++--------
 2 files changed, 76 insertions(+), 11 deletions(-)
 create mode 100644 configs/default_hooks/rtcwake

diff --git a/configs/default_hooks/rtcwake b/configs/default_hooks/rtcwake
new file mode 100644
index 0000000..7fabe2c
--- /dev/null
+++ b/configs/default_hooks/rtcwake
@@ -0,0 +1,41 @@
#!/usr/bin/env sh
[message trimmed]

[PATCH sxmo-utils v2] Move unlock listening to the inputhandler 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_inputhandler.sh   | 23 +++++++++++++++++--
 scripts/core/sxmo_proximitylock.sh  |  4 ----
 scripts/core/sxmo_screenlock.sh     | 13 +++++------
 scripts/core/sxmo_unlocklistener.sh | 35 -----------------------------
 4 files changed, 26 insertions(+), 49 deletions(-)
 delete mode 100755 scripts/core/sxmo_unlocklistener.sh

I forgotten a little remaining sxmo_unlocklistener.sh usage in proximitylock

diff --git a/scripts/core/sxmo_inputhandler.sh b/scripts/core/sxmo_inputhandler.sh
index 72390bd..c1b9aad 100755
--- a/scripts/core/sxmo_inputhandler.sh
[message trimmed]

[PATCH sxmo-utils] Move unlock listening to the inputhandler 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_inputhandler.sh   | 23 +++++++++++++++++--
 scripts/core/sxmo_proximitylock.sh  |  3 ---
 scripts/core/sxmo_screenlock.sh     | 13 +++++------
 scripts/core/sxmo_unlocklistener.sh | 35 -----------------------------
 4 files changed, 26 insertions(+), 48 deletions(-)
 delete mode 100755 scripts/core/sxmo_unlocklistener.sh

diff --git a/scripts/core/sxmo_inputhandler.sh b/scripts/core/sxmo_inputhandler.sh
index 72390bd..c1b9aad 100755
--- a/scripts/core/sxmo_inputhandler.sh
+++ b/scripts/core/sxmo_inputhandler.sh
@@ -9,6 +9,25 @@ ACTION="$1"
[message trimmed]

[PATCH sxmo-utils] Simplify the proximitylock with the newlock 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_proximitylock.sh | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/scripts/core/sxmo_proximitylock.sh b/scripts/core/sxmo_proximitylock.sh
index e2c0257..e5eb5e9 100644
--- a/scripts/core/sxmo_proximitylock.sh
+++ b/scripts/core/sxmo_proximitylock.sh
@@ -1,11 +1,15 @@
#!/usr/bin/env sh

islocked() {
	[ "$(sxmo_screenlock.sh getCurState)" = "lock" ]
[message trimmed]

[PATCH sxmo-utils 2/3] Strip old unused code 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_proximitylock.sh | 2 --
 1 file changed, 2 deletions(-)

diff --git a/scripts/core/sxmo_proximitylock.sh b/scripts/core/sxmo_proximitylock.sh
index abe5ebb..e2c0257 100644
--- a/scripts/core/sxmo_proximitylock.sh
+++ b/scripts/core/sxmo_proximitylock.sh
@@ -21,7 +21,6 @@ TARGET=30
mainloop() {
	while true; do
		distance="$(distance)"
		# here we do not syncstate to allow user manual lock
[message trimmed]

[PATCH sxmo-utils 1/3] Proximitylock should turn off the screen 3 years ago

From Stacy Harper to ~mil/sxmo-devel

And this also allow the user to lock the screen, by-passing the
proximity lock.

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_proximitylock.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/core/sxmo_proximitylock.sh b/scripts/core/sxmo_proximitylock.sh
index 6db73c0..abe5ebb 100644
--- a/scripts/core/sxmo_proximitylock.sh
+++ b/scripts/core/sxmo_proximitylock.sh
@@ -22,10 +22,10 @@ mainloop() {
	while true; do
[message trimmed]

[PATCH sxmo-utils 3/3] fix indentation style 3 years ago

From Stacy Harper to ~mil/sxmo-devel

Signed-off-by: Stacy Harper <contact@stacyharper.net>
---
 scripts/core/sxmo_screenlock.sh | 198 ++++++++++++++++----------------
 1 file changed, 99 insertions(+), 99 deletions(-)

diff --git a/scripts/core/sxmo_screenlock.sh b/scripts/core/sxmo_screenlock.sh
index 5d715ba..437de39 100755
--- a/scripts/core/sxmo_screenlock.sh
+++ b/scripts/core/sxmo_screenlock.sh
@@ -17,133 +17,133 @@ WAKEUPRTC="/sys/class/wakeup/wakeup1/active_count"
OLD_RTC_WAKECOUNT="$XDG_RUNTIME_DIR/wakeup.rtc.count"

saveAllEventCounts() {
    cat "$WAKEUPRTC" > "$OLD_RTC_WAKECOUNT"
[message trimmed]

[PATCH 1/2] community/sdl_ttf: new aport 3 years ago

From Reed Wade to ~sircmpwn/alpine-aports

Signed-off-by: Reed Wade <reedwade@misterbanal.net>
---
 community/sdl_ttf/APKBUILD | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 community/sdl_ttf/APKBUILD

diff --git a/community/sdl_ttf/APKBUILD b/community/sdl_ttf/APKBUILD
new file mode 100644
index 0000000000..6fee7820a4
--- /dev/null
+++ b/community/sdl_ttf/APKBUILD
@@ -0,0 +1,36 @@
# Contributor: Carlo Landmeter
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
[message trimmed]

[PATCH 2/2] community/navit: new aport 3 years ago

From Reed Wade to ~sircmpwn/alpine-aports

Signed-off-by: Reed Wade <reedwade@misterbanal.net>
---
 community/navit/APKBUILD | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 community/navit/APKBUILD

diff --git a/community/navit/APKBUILD b/community/navit/APKBUILD
new file mode 100644
index 0000000000..51fcd4e560
--- /dev/null
+++ b/community/navit/APKBUILD
@@ -0,0 +1,34 @@
# Contributor: Stacy Harper <contact@stacyharper.net>
# Maintainer: Stacy Harper <contact@stacyharper.net>
[message trimmed]