Skip to content

Commit 9253097

Browse files
authored
configure repository to build filelight AppImage (#3)
1 parent 4b10398 commit 9253097

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
# TEMPLATE-AppImage 🐧
1+
# filelight-AppImage 🐧
22

3-
[![GitHub Downloads](https://img.shields.io/github/downloads/pkgforge-dev/TEMPLATE-AppImage/total?logo=github&label=GitHub%20Downloads)](https://github.com/pkgforge-dev/TEMPLATE-AppImage/releases/latest)
4-
[![CI Build Status](https://github.com//pkgforge-dev/TEMPLATE-AppImage/actions/workflows/appimage.yml/badge.svg)](https://github.com/pkgforge-dev/TEMPLATE-AppImage/releases/latest)
3+
[![GitHub Downloads](https://img.shields.io/github/downloads/pkgforge-dev/filelight-AppImage/total?logo=github&label=GitHub%20Downloads)](https://github.com/pkgforge-dev/filelight-AppImage/releases/latest)
4+
[![CI Build Status](https://github.com/pkgforge-dev/filelight-AppImage/actions/workflows/appimage.yml/badge.svg)](https://github.com/pkgforge-dev/filelight-AppImage/releases/latest)
55

6-
* [Latest Stable Release](https://github.com/pkgforge-dev/TEMPLATE-AppImage/releases/latest)
6+
* [Latest Stable Release](https://github.com/pkgforge-dev/filelight-AppImage/releases/latest)
77

88
---
99

10+
# filelight AppImage
11+
12+
Filelight is a disk usage analyzer that creates an interactive map of concentric, segmented rings that help visualize disk usage on your computer.
13+
1014
AppImage made using [sharun](https://github.com/VHSgunzo/sharun), which makes it extremely easy to turn any binary into a portable package without using containers or similar tricks.
1115

1216
**This AppImage bundles everything and should work on any linux distro, even on musl based ones.**
@@ -20,7 +24,3 @@ More at: [AnyLinux-AppImages](https://pkgforge-dev.github.io/Anylinux-AppImages/
2024
<img src="https://github.com/user-attachments/assets/d40067a6-37d2-4784-927c-2c7f7cc6104b" alt="Inspiration Image">
2125
</a>
2226
</details>
23-
24-
---
25-
26-
# Fork this repository to quickly make an AppImage using the [Anylinux-AppImages](https://github.com/pkgforge-dev/Anylinux-AppImages) tools

get-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARCH=$(uname -m)
66

77
echo "Installing package dependencies..."
88
echo "---------------------------------------------------------------"
9-
# pacman -Syu --noconfirm PACKAGESHERE
9+
pacman -Syu --noconfirm filelight
1010

1111
echo "Installing debloated packages..."
1212
echo "---------------------------------------------------------------"

make-appimage.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
set -eu
44

55
ARCH=$(uname -m)
6-
VERSION=$(pacman -Q PACKAGENAME | awk '{print $2; exit}') # example command to get version of application here
6+
VERSION=$(pacman -Q filelight | awk '{print $2; exit}')
77
export ARCH VERSION
88
export OUTPATH=./dist
99
export ADD_HOOKS="self-updater.bg.hook"
1010
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
11-
export ICON=PATH_OR_URL_TO_ICON
12-
export DESKTOP=PATH_OR_URL_TO_DESKTOP_ENTRY
11+
export ICON=/usr/share/icons/hicolor/scalable/apps/org.kde.filelight.svg
12+
export DESKTOP=/usr/share/applications/org.kde.filelight.desktop
1313

1414
# Deploy dependencies
15-
quick-sharun /PATH/TO/BINARY_AND_LIBRARIES_HERE
15+
quick-sharun /usr/bin/filelight
1616

1717
# Additional changes can be done in between here
1818

0 commit comments

Comments
 (0)