mabox-tools/bin/about-mabox

25 lines
662 B
Plaintext
Raw Normal View History

2022-02-18 20:35:11 +01:00
#!/bin/bash
2022-11-09 22:56:06 +01:00
OSCODE=$(grep CODENAME /etc/lsb-release |cut -d '=' -f2)
2022-04-26 20:23:05 +02:00
case "$LANG" in
pl*)
COMMENT="Lekki, szybki i funkcjonalny Linux z pulpitem na bazie Openbox"
;;
*)
COMMENT="Fast and Lightweight, ready to use Openbox Desktop"
;;
esac
2022-02-18 20:35:11 +01:00
yad --title="About Mabox" --window-icon=mbcc \
--about \
--pname="Mabox Linux" \
2022-11-09 22:56:06 +01:00
--pversion="$(lsb_release -rs) <i>${OSCODE}</i>" \
2022-02-18 20:35:11 +01:00
--image=mbcc \
2022-04-26 20:23:05 +02:00
--comments="${COMMENT}" \
2023-08-19 16:23:51 +02:00
--copyright="Copyright 2016-2023, Daniel Napora <danieln@maboxlinux.org>" \
2022-02-18 20:35:11 +01:00
--license=GPL3 \
--website="https://maboxlinux.org" \
--website-label=maboxlinux.org \
2022-04-26 20:23:05 +02:00
--authors="Daniel Napora <danieln@maboxlinux.org>"