From Bobby Hamblin to ~geb/public-inbox
After testing numen on my Arch Linux ARM / SXMO Pinephone installation, I'm really excited about this project. In order to make it as accessible to as many people as possible, is it okay if I package it for Arch Linux via the AUR? I'd be happy to maintain the package as well as a -git VCS version. Thanks, Bobby (hamblingreen)
From Bobby Hamblin to ~mil/mepo-devel
run script to add pin at current day geohash in the last graticule you filedumped in. fully 30W compliant (more at https://geohashing.site) --- scripts/mepo_geohash.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 scripts/mepo_geohash.sh diff --git a/scripts/mepo_geohash.sh b/scripts/mepo_geohash.sh new file mode 100755 index 0000000..0a4cc51 --- /dev/null +++ b/scripts/mepo_geohash.sh @@ -0,0 +1,23 @@ #!/usr/bin/env osh[message trimmed]
From Bobby Hamblin to ~mil/framebufferphone-devel
tidy up package generation script and correct a few errors --- genscripts/gen_alpinepackage.sh | 5 ++-- genscripts/gen_archpackage.sh | 51 +++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 2 deletions(-) create mode 100755 genscripts/gen_archpackage.sh diff --git a/genscripts/gen_alpinepackage.sh b/genscripts/gen_alpinepackage.sh index 5d3e6c1..6deef21 100755 --- a/genscripts/gen_alpinepackage.sh +++ b/genscripts/gen_alpinepackage.sh @@ -7,6 +7,7 @@ header() { echo ' # Maintainer: Miles Alan <m@milesalan.com> [message trimmed]
From Bobby Hamblin to ~mil/framebufferphone-devel
final f_scripts compatability patch! the strange quote situation is because bash really doesn't like escaping single quotes inside single quotes :/ --- genscripts/gen_alpinepackage.sh | 4 +-- genscripts/gen_archpackage.sh | 51 +++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 2 deletions(-) create mode 100755 genscripts/gen_archpackage.sh diff --git a/genscripts/gen_alpinepackage.sh b/genscripts/gen_alpinepackage.sh index 5d3e6c1..adbcf1e 100755 --- a/genscripts/gen_alpinepackage.sh +++ b/genscripts/gen_alpinepackage.sh @@ -34,13 +34,13 @@ package() { [message trimmed]
From Robert Hamblin to ~mil/framebufferphone-devel
in preperation for addition of a gen_archpackage.sh script --- scripts/f_audio | 3 ++- scripts/f_files | 3 ++- scripts/f_game | 3 ++- scripts/f_maps | 3 ++- scripts/f_networks | 3 ++- scripts/f_phone | 3 ++- scripts/f_rss | 3 ++- scripts/f_theme | 3 ++- scripts/f_timer | 3 ++- scripts/f_web | 3 ++- scripts/f_youtube | 3 ++- [message trimmed]
From Robert Hamblin to ~mil/framebufferphone-devel
From: Bobby Hamblin <hamblingreen@hotmail.com> accidentally removed line 60 from script in v1 --- scripts/f_audio | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/f_audio b/scripts/f_audio index 26d4e31..12afc0e 100755 --- a/scripts/f_audio +++ b/scripts/f_audio @@ -49,7 +49,11 @@ devicepine64pinephone() { main() { local RUN OPTS [message trimmed]
From Robert Hamblin to ~mil/framebufferphone-devel
adds font path check to ensure compatability with more systems --- scripts/f_theme | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/scripts/f_theme b/scripts/f_theme index 83f902d..e167126 100755 --- a/scripts/f_theme +++ b/scripts/f_theme @@ -12,21 +12,20 @@ DOC=" used for {sm,md,lg}{white,dark}. " VAR=' [message trimmed]
From Bobby Hamblin to ~mil/framebufferphone-devel
--- scripts/f_youtube | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/f_youtube b/scripts/f_youtube index ac4ca88..6e8f368 100755 --- a/scripts/f_youtube +++ b/scripts/f_youtube @@ -73,7 +73,11 @@ main() { local AV QUERY env | grep -q "^$(basename "$0" | tr '[a-z]' '[A-Z]')=" || eval "$VAR" eval "$(grep deviceinfo_codename /etc/deviceinfo | cut -d= -f2 | tr -d \"- | xargs -ID echo deviceD)" eval "$([message trimmed]
From Bobby Hamblin to ~mil/framebufferphone-devel
works as expected on arch linux arm. i didn't know what to put for the commit message so i just wrote the fanciest sounding thing i could think of :P --- scripts/f_phone | 39 ++++++++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 9 deletions(-) diff --git a/scripts/f_phone b/scripts/f_phone index 47ae9d9..4c83bb2 100755 --- a/scripts/f_phone +++ b/scripts/f_phone @@ -73,7 +73,12 @@ installpolkitudevrules() { }); [message trimmed]
From Bobby Hamblin to ~mil/framebufferphone-devel
the following patch is broken at line 111. i implemented if-then statements to adapt commands to the init system installed, but am unsure how to call the bit that starts network manager from inside an if-then statement. perhaps something better could be used like a global variable stating the init system. i'm not sure and would love feedback --- scripts/f_networks | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/scripts/f_networks b/scripts/f_networks index 88e61f8..2563bb6 100755 --- a/scripts/f_networks +++ b/scripts/f_networks [message trimmed]