diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-12 15:23:07 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-12 15:23:07 +0100 |
commit | d74b131c272a433d328a2863af8ef57f43fd8a56 (patch) | |
tree | 247dd08361ba28d15aa7e98ffe6c4e1b259dca4b /Kernel | |
parent | d6326d6c2ec6a2849f3f0ad0e16c1df3ac0fc326 (diff) | |
download | serenity-d74b131c272a433d328a2863af8ef57f43fd8a56.zip |
Add a little About app and hook it up to the system menu's "About..." entry.
Added icons and customizable text alignment to GLabel.
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/makeall.sh | 2 | ||||
-rwxr-xr-x | Kernel/sync.sh | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 5e3a145c75..e119d66d9f 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -18,6 +18,8 @@ make -C ../Applications/Launcher clean && \ make -C ../Applications/Launcher && \ make -C ../Applications/FileManager clean && \ make -C ../Applications/FileManager && \ +make -C ../Applications/About clean && \ +make -C ../Applications/About && \ make clean &&\ make && \ sudo ./sync.sh diff --git a/Kernel/sync.sh b/Kernel/sync.sh index 0f46f2ef5d..c4b8fef6c1 100755 --- a/Kernel/sync.sh +++ b/Kernel/sync.sh @@ -69,6 +69,7 @@ cp -v ../Applications/FontEditor/FontEditor mnt/bin/FontEditor cp -v ../Applications/Launcher/Launcher mnt/bin/Launcher cp -v ../Applications/Clock/Clock mnt/bin/Clock cp -v ../Applications/FileManager/FileManager mnt/bin/FileManager +cp -v ../Applications/About/About mnt/bin/About cp -v kernel.map mnt/ sh sync-local.sh umount mnt |