├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── snap └── snapcraft.yaml └── ubuntu-mate-pi /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: ubuntu_mate 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: ubuntumate 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | custom: https://ubuntu-mate.org/donate 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019 Martin Wimpress 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 9 | of the Software, and to permit persons to whom the Software is furnished to do 10 | so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Simple wrapper script to present Raspberry Pi system information for the Ubuntu MATE Raspberry Pi images. 2 | -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- 1 | name: ubuntu-mate-pi 2 | base: core20 3 | version: git 4 | summary: Support information for users of Ubuntu MATE for the Pi 5 | description: | 6 | Simple script to present support and contact information for users of 7 | the Ubuntu MATE images for Raspberry Pi. 8 | 9 | architectures: 10 | - build-on: armhf 11 | - build-on: arm64 12 | 13 | grade: stable 14 | confinement: strict 15 | 16 | parts: 17 | ubuntu-mate-pi: 18 | plugin: dump 19 | source: . 20 | 21 | apps: 22 | ubuntu-mate-pi: 23 | command: ubuntu-mate-pi 24 | -------------------------------------------------------------------------------- /ubuntu-mate-pi: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cat <