Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
ffbs-gluon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ffbs
ffbs-gluon
Commits
59616e8d
Commit
59616e8d
authored
11 years ago
by
Jan-Philipp Litza
Browse files
Options
Downloads
Patches
Plain Diff
alfred: improved readability
parent
e901ceda
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
package/gluon-alfred/files/lib/gluon/alfred/announce.sh
+10
-4
10 additions, 4 deletions
package/gluon-alfred/files/lib/gluon/alfred/announce.sh
with
10 additions
and
4 deletions
package/gluon-alfred/files/lib/gluon/alfred/announce.sh
+
10
−
4
View file @
59616e8d
...
...
@@ -19,23 +19,27 @@ set -e
json_init
json_add_string
"name"
"
$(
uci get
'system.@system[0].hostname'
)
"
if
[
"
$(
uci
-q
get
'system.@system[0].share_location'
)
"
=
1
]
;
then
json_add_object
"location"
json_add_double
"latitude"
"
$(
uci get
'system.@system[0].latitude'
)
"
json_add_double
"longitude"
"
$(
uci get
'system.@system[0].longitude'
)
"
json_close_object
# location
json_add_object
"location"
json_add_double
"latitude"
"
$(
uci get
'system.@system[0].latitude'
)
"
json_add_double
"longitude"
"
$(
uci get
'system.@system[0].longitude'
)
"
json_close_object
# location
fi
json_add_object
"software"
json_add_object
"firmware"
json_add_string
"base"
"gluon"
json_add_string
"release"
"
$(
cat
/lib/gluon/release
)
"
json_close_object
# firmware
if
[
-x
/usr/sbin/autoupdater
]
;
then
json_add_object
"autoupdater"
json_add_string
"branch"
"
$(
uci
-q
get autoupdater.settings.branch
)
"
json_add_boolean
"enabled"
"
$(
uci
-q
get autoupdater.settings.enabled
)
"
json_close_object
# autoupdater
fi
if
[
-x
/usr/bin/fastd
]
;
then
json_add_object
"fastd"
json_add_string
"version"
"
$(
fastd
-v
|
cut
-d
' '
-f2
)
"
...
...
@@ -43,9 +47,11 @@ json_add_object "software"
json_close_object
# fastd
fi
json_close_object
# software
json_add_object
"hardware"
json_add_string
"model"
"
$(
get_model
)
"
json_close_object
# hardware
json_add_object
"network"
json_add_string
"mac"
"
$(
sysconfig primary_mac
)
"
json_add_array
"addresses"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment