Compare commits

...

22 Commits

Author SHA1 Message Date
github-actions[bot]
234a1ba030 Update CHANGELOG.md 2025-01-24 13:06:17 +00:00
CanbiZ
1c90c131b7
fix reapproval 2025-01-24 14:06:03 +01:00
github-actions[bot]
8c6af4db1f
Update .app files (#1721)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-01-24 14:04:56 +01:00
CanbiZ
f29cbe5b46
[Core] Better Creation of App Headers for next feature (#1719)
* Update Function to crawl app Headers

* Update Function to crawl app Headers
2025-01-24 14:03:59 +01:00
github-actions[bot]
a7ee0705e2
Update .app-headers file (#1718) 2025-01-24 13:59:02 +01:00
community-scripts-pr-app[bot]
bf618f04e4
Update CHANGELOG.md (#1717) 2025-01-24 13:58:43 +01:00
CanbiZ
8241fa1dd4
Update actualbudget.sh 2025-01-24 13:50:52 +01:00
CanbiZ
ab6244c1fe
Update actualbudget.sh 2025-01-24 13:45:54 +01:00
CanbiZ
e6d032eac3
rm file 2025-01-24 13:41:13 +01:00
CanbiZ
b402026b84
Update actualbudget-install.sh 2025-01-24 13:38:42 +01:00
CanbiZ
ebb7f73e8f
Update actualbudget.sh 2025-01-24 13:38:31 +01:00
CanbiZ
39ff3486e9
Update actualbudget.sh 2025-01-24 13:38:07 +01:00
CanbiZ
f1109388f4
Update actualbudget.sh 2025-01-24 13:33:07 +01:00
CanbiZ
c4532f538b
Update actualbudget.sh 2025-01-24 13:32:20 +01:00
CanbiZ
63061ea06f
Update actualbudget-install.sh 2025-01-24 13:31:29 +01:00
CanbiZ
f78cb0319e
Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic (#1716)
* Update filebrowser.sh

* rm comments
2025-01-24 13:22:12 +01:00
community-scripts-pr-app[bot]
607318b197
Update CHANGELOG.md (#1713)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-01-24 12:03:52 +01:00
CanbiZ
928eabc202
Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt (#1712)
* Update ubuntu2204-vm.sh

* set space to 5g

* increase space

* add cifs support
2025-01-24 12:02:07 +01:00
CanbiZ
38b692aaa3
Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support (#1714)
* Update ubuntu2404-vm.sh

* Update ubuntu2404-vm.json
2025-01-24 12:01:55 +01:00
CanbiZ
dc03df6f8a
add cifs support 2025-01-24 11:51:15 +01:00
CanbiZ
81be2a49c0
New Script: Ubuntu 24.10 VM (#1711)
* New Script: Ubuntu 24.10 VM

* Create ubuntu2410-vm.json

* final state vm

* add cloudinit

* rename and add correct discussion
2025-01-24 11:46:27 +01:00
community-scripts-pr-app[bot]
d4aedc6702
Update CHANGELOG.md (#1702)
Some checks are pending
Shellcheck / Shellcheck (push) Waiting to run
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
2025-01-23 19:13:07 +01:00
236 changed files with 2413 additions and 254 deletions

View File

@ -1,4 +1,4 @@
name: Auto Update .app-headers
name: Auto Update .app-files
on:
push:
@ -9,7 +9,7 @@ on:
workflow_dispatch: # Ermöglicht das manuelle Ausführen der Action
jobs:
update-app-headers:
update-app-files:
runs-on: ubuntu-latest
permissions:
@ -31,15 +31,15 @@ jobs:
- name: Install figlet
run: sudo apt-get install -y figlet
# Step 4: Run the generate-app-headers.sh script to update .app-headers
- name: Run generate-app-headers.sh to update .app-headers
# Step 4: Run the updated generate-app-files.sh script
- name: Run generate-app-files.sh
run: |
chmod +x .github/workflows/scripts/generate-app-headers.sh
.github/workflows/scripts/generate-app-headers.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Step 5: Check if there are any changes
# Step 5: Check for changes
- name: Check if there are any changes
id: verify-diff
run: |
@ -51,16 +51,15 @@ jobs:
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add ./misc/.app-headers
git commit -m "Update .app-headers file"
# Create a temporary branch for the PR
git checkout -b pr-update-app-headers
git push origin pr-update-app-headers --force
git add ct/*.app
git commit -m "Update .app files"
git checkout -b pr-update-app-files
git push origin pr-update-app-files --force
# Create PR against main
gh pr create --title "[core] update .app-headers file" \
--body "This PR is auto-generated by a Github Action to update the .app-headers file." \
--head pr-update-app-headers \
gh pr create --title "[core] update .app files" \
--body "This PR is auto-generated by a Github Action to update the .app files." \
--head pr-update-app-files \
--base main \
--label "automated pr"
env:
@ -71,12 +70,20 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PR_NUMBER=$(gh pr list --head "pr-update-app-headers" --json number --jq '.[].number')
# Check if the PR was created by the bot (skip review if so)
PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login')
if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then
gh pr review "$PR_NUMBER" --approve
# Get the PR number for the current branch
PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number')
# Check if a PR number was retrieved
if [ -n "$PR_NUMBER" ]; then
# Get the PR author
PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login')
# Approve the PR if it was not created by the bot
if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then
gh pr review "$PR_NUMBER" --approve
else
echo "PR was created by the bot, skipping review."
fi
else
echo "PR was created by the bot, skipping review."
echo "No PR found for the current branch."
fi

View File

@ -1,33 +1,28 @@
#!/usr/bin/env bash
output_file="./misc/.app-headers"
> "$output_file" # Clear or create the file
current_date=$(date +"%m-%d-%Y")
# Header with date
{
echo "### Generated on $current_date"
echo "##################################################"
echo
} >> "$output_file"
# Find only regular .sh files in ./ct, sort them alphabetically
# Find all .sh files in ./ct directory, sorted alphabetically
find ./ct -type f -name "*.sh" | sort | while read -r script; do
# Extract the APP name from the APP line
app_name=$(grep -oP '^APP="\K[^"]+' "$script" 2>/dev/null)
if [[ -n "$app_name" ]]; then
# Generate figlet output
figlet_output=$(figlet -f slant "$app_name")
{
echo "### $(basename "$script")"
echo "APP=$app_name"
echo "$figlet_output"
echo
} >> "$output_file"
# Define the output file name based on the .sh file
output_file="${script%.sh}.app"
# Check if the output file already exists
if [[ ! -f "$output_file" ]]; then
# Generate figlet output
figlet_output=$(figlet -f slant "$app_name")
# Write the figlet output to the file
echo "$figlet_output" > "$output_file"
echo "Generated: $output_file"
else
echo "Skipped: $output_file already exists"
fi
else
echo "No APP name found in $script, skipping."
fi
done
echo "Generated combined file at $output_file"
echo "Completed processing .sh files."

View File

@ -17,6 +17,24 @@ All LXC instances created using this repository come pre-installed with Midnight
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
## 2025-01-24
### Changed
### ✨ New Scripts
- New Script: Ubuntu 24.10 VM [@MickLesk](https://github.com/MickLesk) ([#1711](https://github.com/community-scripts/ProxmoxVE/pull/1711))
### 🚀 Updated Scripts
- Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic [@MickLesk](https://github.com/MickLesk) ([#1716](https://github.com/community-scripts/ProxmoxVE/pull/1716))
- Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/community-scripts/ProxmoxVE/pull/1712))
- Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/community-scripts/ProxmoxVE/pull/1714))
### 🧰 Maintenance
- [Core] Better Creation of App Headers for next feature [@MickLesk](https://github.com/MickLesk) ([#1719](https://github.com/community-scripts/ProxmoxVE/pull/1719))
## 2025-01-23
### Changed
@ -30,6 +48,10 @@ Do not break established syntax in this file, as it is automatically updated by
- Refactor ScriptInfoBlocks and siteConfig to properly show the most populair scripts [@BramSuurdje](https://github.com/BramSuurdje) ([#1697](https://github.com/community-scripts/ProxmoxVE/pull/1697))
### 🧰 Maintenance
- Update build.func: Ubuntu advanced settings version [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1701](https://github.com/community-scripts/ProxmoxVE/pull/1701))
## 2025-01-22
### Changed

6
ct/2fauth.app Normal file
View File

@ -0,0 +1,6 @@
___ _________ __ __
|__ \ / ____/ | __ __/ /_/ /_
__/ // /_ / /| |/ / / / __/ __ \
/ __// __/ / ___ / /_/ / /_/ / / /
/____/_/ /_/ |_\__,_/\__/_/ /_/

6
ct/5etools.app Normal file
View File

@ -0,0 +1,6 @@
______ __ __
/ ____/__ / /_____ ____ / /____
/___ \/ _ \/ __/ __ \/ __ \/ / ___/
____/ / __/ /_/ /_/ / /_/ / (__ )
/_____/\___/\__/\____/\____/_/____/

6
ct/actualbudget.app Normal file
View File

@ -0,0 +1,6 @@
___ __ __ ____ __ __
/ | _____/ /___ ______ _/ / / __ )__ ______/ /___ ____ / /_
/ /| |/ ___/ __/ / / / __ `/ / / __ / / / / __ / __ `/ _ \/ __/
/ ___ / /__/ /_/ /_/ / /_/ / / / /_/ / /_/ / /_/ / /_/ / __/ /_
/_/ |_\___/\__/\__,_/\__,_/_/ /_____/\__,_/\__,_/\__, /\___/\__/
/____/

View File

@ -33,30 +33,25 @@ function update_script() {
msg_error "No ${APP} Installation Found!"
exit
fi
if ! command -v jq >/dev/null 2>&1; then
echo "Installing jq..."
apt-get install -y jq >/dev/null 2>&1
echo "Installed jq..."
fi
RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual-server/tags | jq --raw-output '.[0].name')
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
if [[ ! -f /opt/actualbudget_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/actualbudget_version.txt)" ]]; then
msg_info "Stopping ${APP}"
systemctl stop actualbudget
msg_ok "${APP} Stopped"
msg_info "Updating ${APP} to ${RELEASE}"
wget -q https://codeload.github.com/actualbudget/actual-server/legacy.tar.gz/refs/tags/${RELEASE} -O actual-server.tar.gz
tar -xzvf actual-server.tar.gz >/dev/null 2>&1
cd /tmp
wget -q https://github.com/actualbudget/actual-server/archive/refs/tags/v${RELEASE}.tar.gz
tar -xzf v${RELEASE}.tar.gz >/dev/null 2>&1
mv /opt/actualbudget /opt/actualbudget_bak
mkdir -p /opt/actualbudget/
mv actual-server-* /opt/actualbudget
mv *ctual-server-* /opt/actualbudget
mv /opt/actualbudget_bak/.env /opt/actualbudget
mv /opt/actualbudget_bak/server-files /opt/actualbudget/server-files
cd /opt/actualbudget
yarn install &>/dev/null
echo "${RELEASE}" >/opt/${APP}_version.txt
echo "${RELEASE}" >/opt/actualbudget_version.txt
msg_ok "Updated ${APP}"
msg_info "Starting ${APP}"
@ -65,6 +60,7 @@ function update_script() {
msg_info "Cleaning Up"
rm -rf /opt/actualbudget_bak
rm -rf /tmp/actual-server.tar.gz
msg_ok "Cleaned"
msg_ok "Updated Successfully"
else

6
ct/adguard.app Normal file
View File

@ -0,0 +1,6 @@
___ __ __
/ | ____/ /___ ___ ______ __________/ /
/ /| |/ __ / __ `/ / / / __ `/ ___/ __ /
/ ___ / /_/ / /_/ / /_/ / /_/ / / / /_/ /
/_/ |_\__,_/\__, /\__,_/\__,_/_/ \__,_/
/____/

6
ct/adventurelog.app Normal file
View File

@ -0,0 +1,6 @@
___ __ __ __
/ | ____/ / _____ ____ / /___ __________ / / ____ ____ _
/ /| |/ __ / | / / _ \/ __ \/ __/ / / / ___/ _ \/ / / __ \/ __ `/
/ ___ / /_/ /| |/ / __/ / / / /_/ /_/ / / / __/ /___/ /_/ / /_/ /
/_/ |_\__,_/ |___/\___/_/ /_/\__/\__,_/_/ \___/_____/\____/\__, /
/____/

6
ct/agentdvr.app Normal file
View File

@ -0,0 +1,6 @@
___ __ ____ _ ______
/ | ____ ____ ____ / /_/ __ \ | / / __ \
/ /| |/ __ `/ _ \/ __ \/ __/ / / / | / / /_/ /
/ ___ / /_/ / __/ / / / /_/ /_/ /| |/ / _, _/
/_/ |_\__, /\___/_/ /_/\__/_____/ |___/_/ |_|
/____/

6
ct/alpine-docker.app Normal file
View File

@ -0,0 +1,6 @@
___ __ _ ____ __
/ | / /___ (_)___ ___ / __ \____ _____/ /_____ _____
/ /| | / / __ \/ / __ \/ _ \______/ / / / __ \/ ___/ //_/ _ \/ ___/
/ ___ |/ / /_/ / / / / / __/_____/ /_/ / /_/ / /__/ ,< / __/ /
/_/ |_/_/ .___/_/_/ /_/\___/ /_____/\____/\___/_/|_|\___/_/
/_/

6
ct/alpine-grafana.app Normal file
View File

@ -0,0 +1,6 @@
___ __ _ ______ ____
/ | / /___ (_)___ ___ / ____/________ _/ __/___ _____ ____ _
/ /| | / / __ \/ / __ \/ _ \______/ / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/
/ ___ |/ / /_/ / / / / / __/_____/ /_/ / / / /_/ / __/ /_/ / / / / /_/ /
/_/ |_/_/ .___/_/_/ /_/\___/ \____/_/ \__,_/_/ \__,_/_/ /_/\__,_/
/_/

12
ct/alpine-nextcloud.app Normal file
View File

@ -0,0 +1,12 @@
___ __ _ _ __ __ __
/ | / /___ (_)___ ___ / | / /__ _ __/ /______/ /___ __ __
/ /| | / / __ \/ / __ \/ _ \______/ |/ / _ \| |/_/ __/ ___/ / __ \/ / / /
/ ___ |/ / /_/ / / / / / __/_____/ /| / __/> </ /_/ /__/ / /_/ / /_/ /
/_/ |_/_/ .___/_/_/ /_/\___/ /_/ |_/\___/_/|_|\__/\___/_/\____/\__,_/
/_/
__
____/ /
/ __ /
/ /_/ /
\__,_/

12
ct/alpine-vaultwarden.app Normal file
View File

@ -0,0 +1,12 @@
___ __ _ _ __ ____
/ | / /___ (_)___ ___ | | / /___ ___ __/ / /__ ______ _
/ /| | / / __ \/ / __ \/ _ \_____| | / / __ `/ / / / / __/ | /| / / __ `/
/ ___ |/ / /_/ / / / / / __/_____/ |/ / /_/ / /_/ / / /_ | |/ |/ / /_/ /
/_/ |_/_/ .___/_/_/ /_/\___/ |___/\__,_/\__,_/_/\__/ |__/|__/\__,_/
/_/
__
_________/ /__ ____
/ ___/ __ / _ \/ __ \
/ / / /_/ / __/ / / /
/_/ \__,_/\___/_/ /_/

12
ct/alpine-zigbee2mqtt.app Normal file
View File

@ -0,0 +1,12 @@
___ __ _ _____ _ __ ___ __ ___
/ | / /___ (_)___ ___ /__ / (_)___ _/ /_ ___ ___ |__ \ / |/ /
/ /| | / / __ \/ / __ \/ _ \______/ / / / __ `/ __ \/ _ \/ _ \__/ // /|_/ /
/ ___ |/ / /_/ / / / / / __/_____/ /__/ / /_/ / /_/ / __/ __/ __// / / /
/_/ |_/_/ .___/_/_/ /_/\___/ /____/_/\__, /_.___/\___/\___/____/_/ /_/
/_/ /____/
____ ____________
/ __ \/_ __/_ __/
/ / / / / / / /
/ /_/ / / / / /
\___\_\/_/ /_/

6
ct/alpine.app Normal file
View File

@ -0,0 +1,6 @@
___ __ _
/ | / /___ (_)___ ___
/ /| | / / __ \/ / __ \/ _ \
/ ___ |/ / /_/ / / / / / __/
/_/ |_/_/ .___/_/_/ /_/\___/
/_/

12
ct/apache-cassandra.app Normal file
View File

@ -0,0 +1,12 @@
___ __ ______
/ | ____ ____ ______/ /_ ___ / ____/___ _______________ _____
/ /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / / __ `/ ___/ ___/ __ `/ __ \
/ ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /___/ /_/ (__ |__ ) /_/ / / / /
/_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\__,_/____/____/\__,_/_/ /_/
/_/
__
____/ /________ _
/ __ / ___/ __ `/
/ /_/ / / / /_/ /
\__,_/_/ \__,_/

12
ct/apache-couchdb.app Normal file
View File

@ -0,0 +1,12 @@
___ __ ______ __ ____
/ | ____ ____ ______/ /_ ___ / ____/___ __ _______/ /_ / __ \
/ /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / / __ \/ / / / ___/ __ \/ / / /
/ ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /___/ /_/ / /_/ / /__/ / / / /_/ /
/_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\____/\__,_/\___/_/ /_/_____/
/_/
____
/ __ )
/ __ |
/ /_/ /
/_____/

12
ct/apache-guacamole.app Normal file
View File

@ -0,0 +1,12 @@
___ __ ______
/ | ____ ____ ______/ /_ ___ / ____/_ ______ __________ _
/ /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / __/ / / / __ `/ ___/ __ `/
/ ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /_/ / /_/ / /_/ / /__/ /_/ /
/_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\__,_/\__,_/\___/\__,_/
/_/
__
____ ___ ____ / /__
/ __ `__ \/ __ \/ / _ \
/ / / / / / /_/ / / __/
/_/ /_/ /_/\____/_/\___/

6
ct/apt-cacher-ng.app Normal file
View File

@ -0,0 +1,6 @@
___ __ ______ __ _ ________
/ | ____ / /_ / ____/___ ______/ /_ ___ _____ / | / / ____/
/ /| | / __ \/ __/_____/ / / __ `/ ___/ __ \/ _ \/ ___/_____/ |/ / / __
/ ___ |/ /_/ / /_/_____/ /___/ /_/ / /__/ / / / __/ / /_____/ /| / /_/ /
/_/ |_/ .___/\__/ \____/\__,_/\___/_/ /_/\___/_/ /_/ |_/\____/
/_/

6
ct/archivebox.app Normal file
View File

@ -0,0 +1,6 @@
___ __ _ ____
/ | __________/ /_ (_) _____ / __ )____ _ __
/ /| | / ___/ ___/ __ \/ / | / / _ \/ __ / __ \| |/_/
/ ___ |/ / / /__/ / / / /| |/ / __/ /_/ / /_/ /> <
/_/ |_/_/ \___/_/ /_/_/ |___/\___/_____/\____/_/|_|

6
ct/aria2.app Normal file
View File

@ -0,0 +1,6 @@
___ _ ___
/ | _____(_)___ |__ \
/ /| | / ___/ / __ `/_/ /
/ ___ |/ / / / /_/ / __/
/_/ |_/_/ /_/\__,_/____/

6
ct/audiobookshelf.app Normal file
View File

@ -0,0 +1,6 @@
___ __ __ __ ______
____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
/ __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/

6
ct/authentik.app Normal file
View File

@ -0,0 +1,6 @@
___ __ __ __ _ __
/ | __ __/ /_/ /_ ___ ____ / /_(_) /__
/ /| |/ / / / __/ __ \/ _ \/ __ \/ __/ / //_/
/ ___ / /_/ / /_/ / / / __/ / / / /_/ / ,<
/_/ |_\__,_/\__/_/ /_/\___/_/ /_/\__/_/_/|_|

6
ct/autobrr.app Normal file
View File

@ -0,0 +1,6 @@
___ __ __
/ | __ __/ /_____ / /_ __________
/ /| |/ / / / __/ __ \/ __ \/ ___/ ___/
/ ___ / /_/ / /_/ /_/ / /_/ / / / /
/_/ |_\__,_/\__/\____/_.___/_/ /_/

6
ct/bazarr.app Normal file
View File

@ -0,0 +1,6 @@
____
/ __ )____ _____ ____ ___________
/ __ / __ `/_ / / __ `/ ___/ ___/
/ /_/ / /_/ / / /_/ /_/ / / / /
/_____/\__,_/ /___/\__,_/_/ /_/

6
ct/beszel.app Normal file
View File

@ -0,0 +1,6 @@
____ __
/ __ )___ _________ ___ / /
/ __ / _ \/ ___/_ / / _ \/ /
/ /_/ / __(__ ) / /_/ __/ /
/_____/\___/____/ /___/\___/_/

6
ct/blocky.app Normal file
View File

@ -0,0 +1,6 @@
____ __ __
/ __ )/ /___ _____/ /____ __
/ __ / / __ \/ ___/ //_/ / / /
/ /_/ / / /_/ / /__/ ,< / /_/ /
/_____/_/\____/\___/_/|_|\__, /
/____/

6
ct/bookstack.app Normal file
View File

@ -0,0 +1,6 @@
____ __ __ __
/ __ )____ ____ / /_______/ /_____ ______/ /__
/ __ / __ \/ __ \/ //_/ ___/ __/ __ `/ ___/ //_/
/ /_/ / /_/ / /_/ / ,< (__ ) /_/ /_/ / /__/ ,<
/_____/\____/\____/_/|_/____/\__/\__,_/\___/_/|_|

6
ct/bunkerweb.app Normal file
View File

@ -0,0 +1,6 @@
____ __ _ __ __
/ __ )__ ______ / /_____ ____| | / /__ / /_
/ __ / / / / __ \/ //_/ _ \/ ___/ | /| / / _ \/ __ \
/ /_/ / /_/ / / / / ,< / __/ / | |/ |/ / __/ /_/ /
/_____/\__,_/_/ /_/_/|_|\___/_/ |__/|__/\___/_.___/

6
ct/caddy.app Normal file
View File

@ -0,0 +1,6 @@
______ __ __
/ ____/___ _____/ /___/ /_ __
/ / / __ `/ __ / __ / / / /
/ /___/ /_/ / /_/ / /_/ / /_/ /
\____/\__,_/\__,_/\__,_/\__, /
/____/

6
ct/calibre-web.app Normal file
View File

@ -0,0 +1,6 @@
______ ___ __ _ __ __
/ ____/___ _/ (_) /_ ________ | | / /__ / /_
/ / / __ `/ / / __ \/ ___/ _ \_____| | /| / / _ \/ __ \
/ /___/ /_/ / / / /_/ / / / __/_____/ |/ |/ / __/ /_/ /
\____/\__,_/_/_/_.___/_/ \___/ |__/|__/\___/_.___/

6
ct/casaos.app Normal file
View File

@ -0,0 +1,6 @@
______ ____ _____
/ ____/___ __________ _/ __ \/ ___/
/ / / __ `/ ___/ __ `/ / / /\__ \
/ /___/ /_/ (__ ) /_/ / /_/ /___/ /
\____/\__,_/____/\__,_/\____//____/

12
ct/changedetection.app Normal file
View File

@ -0,0 +1,12 @@
________
/ ____/ /_ ____ _____ ____ ____
/ / / __ \/ __ `/ __ \/ __ `/ _ \
/ /___/ / / / /_/ / / / / /_/ / __/
\____/_/ /_/\__,_/_/ /_/\__, /\___/
/____/
____ __ __ _
/ __ \___ / /____ _____/ /_(_)___ ____
/ / / / _ \/ __/ _ \/ ___/ __/ / __ \/ __ \
/ /_/ / __/ /_/ __/ /__/ /_/ / /_/ / / / /
/_____/\___/\__/\___/\___/\__/_/\____/_/ /_/

6
ct/channels.app Normal file
View File

@ -0,0 +1,6 @@
________ __
/ ____/ /_ ____ _____ ____ ___ / /____
/ / / __ \/ __ `/ __ \/ __ \/ _ \/ / ___/
/ /___/ / / / /_/ / / / / / / / __/ (__ )
\____/_/ /_/\__,_/_/ /_/_/ /_/\___/_/____/

6
ct/checkmk.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __
_____/ /_ ___ _____/ /______ ___ / /__
/ ___/ __ \/ _ \/ ___/ //_/ __ `__ \/ //_/
/ /__/ / / / __/ /__/ ,< / / / / / / ,<
\___/_/ /_/\___/\___/_/|_/_/ /_/ /_/_/|_|

6
ct/cloudflared.app Normal file
View File

@ -0,0 +1,6 @@
________ ________ __
/ ____/ /___ __ ______/ / __/ /___ _________ ____/ /
/ / / / __ \/ / / / __ / /_/ / __ `/ ___/ _ \/ __ /
/ /___/ / /_/ / /_/ / /_/ / __/ / /_/ / / / __/ /_/ /
\____/_/\____/\__,_/\__,_/_/ /_/\__,_/_/ \___/\__,_/

6
ct/cockpit.app Normal file
View File

@ -0,0 +1,6 @@
______ __ _ __
/ ____/___ _____/ /______ (_) /_
/ / / __ \/ ___/ //_/ __ \/ / __/
/ /___/ /_/ / /__/ ,< / /_/ / / /_
\____/\____/\___/_/|_/ .___/_/\__/
/_/

6
ct/commafeed.app Normal file
View File

@ -0,0 +1,6 @@
______ ______ __
/ ____/___ ____ ___ ____ ___ ____ _/ ____/__ ___ ____/ /
/ / / __ \/ __ `__ \/ __ `__ \/ __ `/ /_ / _ \/ _ \/ __ /
/ /___/ /_/ / / / / / / / / / / / /_/ / __/ / __/ __/ /_/ /
\____/\____/_/ /_/ /_/_/ /_/ /_/\__,_/_/ \___/\___/\__,_/

6
ct/cronicle.app Normal file
View File

@ -0,0 +1,6 @@
______ _ __
/ ____/________ ____ (_)____/ /__
/ / / ___/ __ \/ __ \/ / ___/ / _ \
/ /___/ / / /_/ / / / / / /__/ / __/
\____/_/ \____/_/ /_/_/\___/_/\___/

6
ct/daemonsync.app Normal file
View File

@ -0,0 +1,6 @@
____ _____
/ __ \____ ____ ____ ___ ____ ____ / ___/__ ______ _____
/ / / / __ `/ _ \/ __ `__ \/ __ \/ __ \ \__ \/ / / / __ \/ ___/
/ /_/ / /_/ / __/ / / / / / /_/ / / / / ___/ / /_/ / / / / /__
/_____/\__,_/\___/_/ /_/ /_/\____/_/ /_/ /____/\__, /_/ /_/\___/
/____/

6
ct/dashy.app Normal file
View File

@ -0,0 +1,6 @@
____ __
/ __ \____ ______/ /_ __ __
/ / / / __ `/ ___/ __ \/ / / /
/ /_/ / /_/ (__ ) / / / /_/ /
/_____/\__,_/____/_/ /_/\__, /
/____/

6
ct/debian.app Normal file
View File

@ -0,0 +1,6 @@
____ __ _
/ __ \___ / /_ (_)___ _____
/ / / / _ \/ __ \/ / __ `/ __ \
/ /_/ / __/ /_/ / / /_/ / / / /
/_____/\___/_.___/_/\__,_/_/ /_/

6
ct/deconz.app Normal file
View File

@ -0,0 +1,6 @@
__ __________ _ _______
____/ /__ / ____/ __ \/ | / /__ /
/ __ / _ \/ / / / / / |/ / / /
/ /_/ / __/ /___/ /_/ / /| / / /__
\__,_/\___/\____/\____/_/ |_/ /____/

6
ct/deluge.app Normal file
View File

@ -0,0 +1,6 @@
____ __
/ __ \___ / /_ ______ ____
/ / / / _ \/ / / / / __ `/ _ \
/ /_/ / __/ / /_/ / /_/ / __/
/_____/\___/_/\__,_/\__, /\___/
/____/

6
ct/docker.app Normal file
View File

@ -0,0 +1,6 @@
____ __
/ __ \____ _____/ /_____ _____
/ / / / __ \/ ___/ //_/ _ \/ ___/
/ /_/ / /_/ / /__/ ,< / __/ /
/_____/\____/\___/_/|_|\___/_/

6
ct/dockge.app Normal file
View File

@ -0,0 +1,6 @@
____ __
/ __ \____ _____/ /______ ____
/ / / / __ \/ ___/ //_/ __ `/ _ \
/ /_/ / /_/ / /__/ ,< / /_/ / __/
/_____/\____/\___/_/|_|\__, /\___/
/____/

12
ct/dotnetaspwebapi.app Normal file
View File

@ -0,0 +1,12 @@
____ __ __ ___ _____ ____ _ __ __
/ __ \____ / /_____ ___ / /_ / | / ___// __ \ | | / /__ / /_
/ / / / __ \/ __/ __ \/ _ \/ __/ / /| | \__ \/ /_/ / | | /| / / _ \/ __ \
/ /_/ / /_/ / /_/ / / / __/ /_ / ___ |___/ / ____/ | |/ |/ / __/ /_/ /
/_____/\____/\__/_/ /_/\___/\__/ /_/ |_/____/_/ |__/|__/\___/_.___/
___ ____ ____
/ | / __ \/ _/
/ /| | / /_/ // /
/ ___ |/ ____// /
/_/ |_/_/ /___/

6
ct/emby.app Normal file
View File

@ -0,0 +1,6 @@
______ __
/ ____/___ ___ / /_ __ __
/ __/ / __ `__ \/ __ \/ / / /
/ /___/ / / / / / /_/ / /_/ /
/_____/_/ /_/ /_/_.___/\__, /
/____/

6
ct/emqx.app Normal file
View File

@ -0,0 +1,6 @@
________ _______ _ __
/ ____/ |/ / __ \ | |/ /
/ __/ / /|_/ / / / / | /
/ /___/ / / / /_/ / / |
/_____/_/ /_/\___\_\/_/|_|

6
ct/ersatztv.app Normal file
View File

@ -0,0 +1,6 @@
______ __ _______ __
/ ____/_____________ _/ /_____/_ __/ | / /
/ __/ / ___/ ___/ __ `/ __/_ / / / | | / /
/ /___/ / (__ ) /_/ / /_ / /_/ / | |/ /
/_____/_/ /____/\__,_/\__/ /___/_/ |___/

6
ct/esphome.app Normal file
View File

@ -0,0 +1,6 @@
___________ ____ __ __
/ ____/ ___// __ \/ / / /___ ____ ___ ___
/ __/ \__ \/ /_/ / /_/ / __ \/ __ `__ \/ _ \
/ /___ ___/ / ____/ __ / /_/ / / / / / / __/
/_____//____/_/ /_/ /_/\____/_/ /_/ /_/\___/

6
ct/evcc.app Normal file
View File

@ -0,0 +1,6 @@
___ _ ____________
/ _ \ | / / ___/ ___/
/ __/ |/ / /__/ /__
\___/|___/\___/\___/

6
ct/fenrus.app Normal file
View File

@ -0,0 +1,6 @@
______
/ ____/__ ____ _______ _______
/ /_ / _ \/ __ \/ ___/ / / / ___/
/ __/ / __/ / / / / / /_/ (__ )
/_/ \___/_/ /_/_/ \__,_/____/

6
ct/fhem.app Normal file
View File

@ -0,0 +1,6 @@
________ __________ ___
/ ____/ / / / ____/ |/ /
/ /_ / /_/ / __/ / /|_/ /
/ __/ / __ / /___/ / / /
/_/ /_/ /_/_____/_/ /_/

6
ct/firefly.app Normal file
View File

@ -0,0 +1,6 @@
_______ ______
/ ____(_)_______ / __/ /_ __
/ /_ / / ___/ _ \/ /_/ / / / /
/ __/ / / / / __/ __/ / /_/ /
/_/ /_/_/ \___/_/ /_/\__, /
/____/

6
ct/flaresolverr.app Normal file
View File

@ -0,0 +1,6 @@
________ _____ __
/ ____/ /___ _________ / ___/____ / / _____ __________
/ /_ / / __ `/ ___/ _ \\__ \/ __ \/ / | / / _ \/ ___/ ___/
/ __/ / / /_/ / / / __/__/ / /_/ / /| |/ / __/ / / /
/_/ /_/\__,_/_/ \___/____/\____/_/ |___/\___/_/ /_/

6
ct/flowiseai.app Normal file
View File

@ -0,0 +1,6 @@
________ _ ___ ____
/ ____/ /___ _ __(_)_______ / | / _/
/ /_ / / __ \ | /| / / / ___/ _ \/ /| | / /
/ __/ / / /_/ / |/ |/ / (__ ) __/ ___ |_/ /
/_/ /_/\____/|__/|__/_/____/\___/_/ |_/___/

6
ct/forgejo.app Normal file
View File

@ -0,0 +1,6 @@
______ _
/ ____/___ _________ ____ (_)___
/ /_ / __ \/ ___/ __ `/ _ \ / / __ \
/ __/ / /_/ / / / /_/ / __/ / / /_/ /
/_/ \____/_/ \__, /\___/_/ /\____/
/____/ /___/

6
ct/frigate.app Normal file
View File

@ -0,0 +1,6 @@
______ _ __
/ ____/____(_)___ _____ _/ /____
/ /_ / ___/ / __ `/ __ `/ __/ _ \
/ __/ / / / / /_/ / /_/ / /_/ __/
/_/ /_/ /_/\__, /\__,_/\__/\___/
/____/

6
ct/ghost.app Normal file
View File

@ -0,0 +1,6 @@
________ __
/ ____/ /_ ____ _____/ /_
/ / __/ __ \/ __ \/ ___/ __/
/ /_/ / / / / /_/ (__ ) /_
\____/_/ /_/\____/____/\__/

6
ct/gitea.app Normal file
View File

@ -0,0 +1,6 @@
_______ __
/ ____(_) /____ ____ _
/ / __/ / __/ _ \/ __ `/
/ /_/ / / /_/ __/ /_/ /
\____/_/\__/\___/\__,_/

6
ct/glance.app Normal file
View File

@ -0,0 +1,6 @@
________
/ ____/ /___ _____ ________
/ / __/ / __ `/ __ \/ ___/ _ \
/ /_/ / / /_/ / / / / /__/ __/
\____/_/\__,_/_/ /_/\___/\___/

6
ct/glpi.app Normal file
View File

@ -0,0 +1,6 @@
________ ____ ____
/ ____/ / / __ \/ _/
/ / __/ / / /_/ // /
/ /_/ / /___/ ____// /
\____/_____/_/ /___/

6
ct/go2rtc.app Normal file
View File

@ -0,0 +1,6 @@
___ __
____ _____ |__ \ _____/ /______
/ __ `/ __ \__/ // ___/ __/ ___/
/ /_/ / /_/ / __// / / /_/ /__
\__, /\____/____/_/ \__/\___/
/____/

6
ct/gokapi.app Normal file
View File

@ -0,0 +1,6 @@
______ __ _
/ ____/___ / /______ _____ (_)
/ / __/ __ \/ //_/ __ `/ __ \/ /
/ /_/ / /_/ / ,< / /_/ / /_/ / /
\____/\____/_/|_|\__,_/ .___/_/
/_/

6
ct/gotify.app Normal file
View File

@ -0,0 +1,6 @@
______ __ _ ____
/ ____/___ / /_(_) __/_ __
/ / __/ __ \/ __/ / /_/ / / /
/ /_/ / /_/ / /_/ / __/ /_/ /
\____/\____/\__/_/_/ \__, /
/____/

6
ct/grafana.app Normal file
View File

@ -0,0 +1,6 @@
______ ____
/ ____/________ _/ __/___ _____ ____ _
/ / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/
/ /_/ / / / /_/ / __/ /_/ / / / / /_/ /
\____/_/ \__,_/_/ \__,_/_/ /_/\__,_/

6
ct/grist.app Normal file
View File

@ -0,0 +1,6 @@
______ _ __
/ ____/____(_)____/ /_
/ / __/ ___/ / ___/ __/
/ /_/ / / / (__ ) /_
\____/_/ /_/____/\__/

6
ct/grocy.app Normal file
View File

@ -0,0 +1,6 @@
____ __________ _______ __
/ __ `/ ___/ __ \/ ___/ / / /
/ /_/ / / / /_/ / /__/ /_/ /
\__, /_/ \____/\___/\__, /
/____/ /____/

6
ct/headscale.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __ __
/ / / /__ ____ _____/ /_____________ _/ /__
/ /_/ / _ \/ __ `/ __ / ___/ ___/ __ `/ / _ \
/ __ / __/ /_/ / /_/ (__ ) /__/ /_/ / / __/
/_/ /_/\___/\__,_/\__,_/____/\___/\__,_/_/\___/

12
ct/heimdall-dashboard.app Normal file
View File

@ -0,0 +1,12 @@
__ __ _ __ ____ ____ __ __
/ / / /__ (_)___ ___ ____/ /___ _/ / / / __ \____ ______/ /_ / /_
/ /_/ / _ \/ / __ `__ \/ __ / __ `/ / /_____/ / / / __ `/ ___/ __ \/ __ \
/ __ / __/ / / / / / / /_/ / /_/ / / /_____/ /_/ / /_/ (__ ) / / / /_/ /
/_/ /_/\___/_/_/ /_/ /_/\__,_/\__,_/_/_/ /_____/\__,_/____/_/ /_/_.___/
__
____ ____ __________/ /
/ __ \/ __ `/ ___/ __ /
/ /_/ / /_/ / / / /_/ /
\____/\__,_/_/ \__,_/

6
ct/hivemq.app Normal file
View File

@ -0,0 +1,6 @@
__ ___ __ _______
/ / / (_) _____ / |/ / __ \
/ /_/ / / | / / _ \/ /|_/ / / / /
/ __ / /| |/ / __/ / / / /_/ /
/_/ /_/_/ |___/\___/_/ /_/\___\_\

6
ct/hoarder.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __
/ / / /___ ____ __________/ /__ _____
/ /_/ / __ \/ __ `/ ___/ __ / _ \/ ___/
/ __ / /_/ / /_/ / / / /_/ / __/ /
/_/ /_/\____/\__,_/_/ \__,_/\___/_/

6
ct/homarr.app Normal file
View File

@ -0,0 +1,6 @@
__ __
/ / / /___ ____ ___ ____ ___________
/ /_/ / __ \/ __ `__ \/ __ `/ ___/ ___/
/ __ / /_/ / / / / / / /_/ / / / /
/_/ /_/\____/_/ /_/ /_/\__,_/_/ /_/

12
ct/homeassistant-core.app Normal file
View File

@ -0,0 +1,12 @@
__ __
/ / / /___ ____ ___ ___
/ /_/ / __ \/ __ `__ \/ _ \
/ __ / /_/ / / / / / / __/
/_/ /_/\____/_/ /_/ /_/\___/
___ _ __ __ ______
/ | __________(_)____/ /_____ _____ / /_ / ____/___ ________
/ /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/_____/ / / __ \/ ___/ _ \
/ ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_/_____/ /___/ /_/ / / / __/
/_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ \____/\____/_/ \___/

6
ct/homeassistant.app Normal file
View File

@ -0,0 +1,6 @@
__ __ ___ _ __ __
/ / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_
/ /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/
/ __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_
/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/

6
ct/homebox.app Normal file
View File

@ -0,0 +1,6 @@
__ __ ____
/ / / /___ ____ ___ ___ / __ )____ _ __
/ /_/ / __ \/ __ `__ \/ _ \/ __ / __ \| |/_/
/ __ / /_/ / / / / / / __/ /_/ / /_/ /> <
/_/ /_/\____/_/ /_/ /_/\___/_____/\____/_/|_|

6
ct/homebridge.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __ _ __
/ / / /___ ____ ___ ___ / /_ _____(_)___/ /___ ____
/ /_/ / __ \/ __ `__ \/ _ \/ __ \/ ___/ / __ / __ `/ _ \
/ __ / /_/ / / / / / / __/ /_/ / / / / /_/ / /_/ / __/
/_/ /_/\____/_/ /_/ /_/\___/_.___/_/ /_/\__,_/\__, /\___/
/____/

6
ct/homepage.app Normal file
View File

@ -0,0 +1,6 @@
__ __
/ / / /___ ____ ___ ___ ____ ____ _____ ____
/ /_/ / __ \/ __ `__ \/ _ \/ __ \/ __ `/ __ `/ _ \
/ __ / /_/ / / / / / / __/ /_/ / /_/ / /_/ / __/
/_/ /_/\____/_/ /_/ /_/\___/ .___/\__,_/\__, /\___/
/_/ /____/

6
ct/homer.app Normal file
View File

@ -0,0 +1,6 @@
__ __
/ / / /___ ____ ___ ___ _____
/ /_/ / __ \/ __ `__ \/ _ \/ ___/
/ __ / /_/ / / / / / / __/ /
/_/ /_/\____/_/ /_/ /_/\___/_/

6
ct/hyperhdr.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __ ______ ____
/ / / /_ ______ ___ _____/ / / / __ \/ __ \
/ /_/ / / / / __ \/ _ \/ ___/ /_/ / / / / /_/ /
/ __ / /_/ / /_/ / __/ / / __ / /_/ / _, _/
/_/ /_/\__, / .___/\___/_/ /_/ /_/_____/_/ |_|
/____/_/

6
ct/hyperion.app Normal file
View File

@ -0,0 +1,6 @@
__ __ _
/ / / /_ ______ ___ _____(_)___ ____
/ /_/ / / / / __ \/ _ \/ ___/ / __ \/ __ \
/ __ / /_/ / /_/ / __/ / / / /_/ / / / /
/_/ /_/\__, / .___/\___/_/ /_/\____/_/ /_/
/____/_/

6
ct/influxdb.app Normal file
View File

@ -0,0 +1,6 @@
____ ______ ____ ____
/ _/___ / __/ /_ ___ __/ __ \/ __ )
/ // __ \/ /_/ / / / / |/_/ / / / __ |
_/ // / / / __/ / /_/ /> </ /_/ / /_/ /
/___/_/ /_/_/ /_/\__,_/_/|_/_____/_____/

6
ct/inspircd.app Normal file
View File

@ -0,0 +1,6 @@
____ ________ ______ __
/ _/___ _________ / _/ __ \/ ____/___/ /
/ // __ \/ ___/ __ \ / // /_/ / / / __ /
_/ // / / (__ ) /_/ // // _, _/ /___/ /_/ /
/___/_/ /_/____/ .___/___/_/ |_|\____/\__,_/
/_/

6
ct/iobroker.app Normal file
View File

@ -0,0 +1,6 @@
_ ____ __
(_)___ / __ )_________ / /_____ _____
/ / __ \/ __ / ___/ __ \/ //_/ _ \/ ___/
/ / /_/ / /_/ / / / /_/ / ,< / __/ /
/_/\____/_____/_/ \____/_/|_|\___/_/

6
ct/iventoy.app Normal file
View File

@ -0,0 +1,6 @@
_ _ __ __
(_) | / /__ ____ / /_____ __ __
/ /| | / / _ \/ __ \/ __/ __ \/ / / /
/ / | |/ / __/ / / / /_/ /_/ / /_/ /
/_/ |___/\___/_/ /_/\__/\____/\__, /
/____/

6
ct/jackett.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __ __
/ /___ ______/ /_____ / /_/ /_
__ / / __ `/ ___/ //_/ _ \/ __/ __/
/ /_/ / /_/ / /__/ ,< / __/ /_/ /_
\____/\__,_/\___/_/|_|\___/\__/\__/

6
ct/jellyfin.app Normal file
View File

@ -0,0 +1,6 @@
__ ____ _____
/ /__ / / /_ __/ __(_)___
__ / / _ \/ / / / / / /_/ / __ \
/ /_/ / __/ / / /_/ / __/ / / / /
\____/\___/_/_/\__, /_/ /_/_/ /_/
/____/

6
ct/jellyseerr.app Normal file
View File

@ -0,0 +1,6 @@
__ ____
/ /__ / / /_ __________ ___ __________
__ / / _ \/ / / / / / ___/ _ \/ _ \/ ___/ ___/
/ /_/ / __/ / / /_/ (__ ) __/ __/ / / /
\____/\___/_/_/\__, /____/\___/\___/_/ /_/
/____/

6
ct/jenkins.app Normal file
View File

@ -0,0 +1,6 @@
__ __ _
/ /__ ____ / /__(_)___ _____
__ / / _ \/ __ \/ //_/ / __ \/ ___/
/ /_/ / __/ / / / ,< / / / / (__ )
\____/\___/_/ /_/_/|_/_/_/ /_/____/

6
ct/kavita.app Normal file
View File

@ -0,0 +1,6 @@
__ __ _ __
/ //_/___ __ __(_) /_____ _
/ ,< / __ `/ | / / / __/ __ `/
/ /| / /_/ /| |/ / / /_/ /_/ /
/_/ |_\__,_/ |___/_/\__/\__,_/

6
ct/keycloak.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __ __
/ //_/__ __ _______/ /___ ____ _/ /__
/ ,< / _ \/ / / / ___/ / __ \/ __ `/ //_/
/ /| / __/ /_/ / /__/ / /_/ / /_/ / ,<
/_/ |_\___/\__, /\___/_/\____/\__,_/_/|_|
/____/

6
ct/kimai.app Normal file
View File

@ -0,0 +1,6 @@
__ __ _ _
/ //_/(_)___ ___ ____ _(_)
/ ,< / / __ `__ \/ __ `/ /
/ /| |/ / / / / / / /_/ / /
/_/ |_/_/_/ /_/ /_/\__,_/_/

6
ct/komga.app Normal file
View File

@ -0,0 +1,6 @@
__ __
/ //_/___ ____ ___ ____ _____ _
/ ,< / __ \/ __ `__ \/ __ `/ __ `/
/ /| / /_/ / / / / / / /_/ / /_/ /
/_/ |_\____/_/ /_/ /_/\__, /\__,_/
/____/

6
ct/komodo.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __
/ //_/___ ____ ___ ____ ____/ /___
/ ,< / __ \/ __ `__ \/ __ \/ __ / __ \
/ /| / /_/ / / / / / / /_/ / /_/ / /_/ /
/_/ |_\____/_/ /_/ /_/\____/\__,_/\____/

6
ct/kubo.app Normal file
View File

@ -0,0 +1,6 @@
__ __ __
/ //_/_ __/ /_ ____
/ ,< / / / / __ \/ __ \
/ /| / /_/ / /_/ / /_/ /
/_/ |_\__,_/_.___/\____/

6
ct/lazylibrarian.app Normal file
View File

@ -0,0 +1,6 @@
__ __ _ __ _
/ / ____ _____ __ __/ / (_) /_ _________ ______(_)___ _____
/ / / __ `/_ / / / / / / / / __ \/ ___/ __ `/ ___/ / __ `/ __ \
/ /___/ /_/ / / /_/ /_/ / /___/ / /_/ / / / /_/ / / / / /_/ / / / /
/_____/\__,_/ /___/\__, /_____/_/_.___/_/ \__,_/_/ /_/\__,_/_/ /_/
/____/

6
ct/lidarr.app Normal file
View File

@ -0,0 +1,6 @@
__ _ __
/ / (_)___/ /___ ___________
/ / / / __ / __ `/ ___/ ___/
/ /___/ / /_/ / /_/ / / / /
/_____/_/\__,_/\__,_/_/ /_/

6
ct/linkwarden.app Normal file
View File

@ -0,0 +1,6 @@
__ _ __ __
/ / (_)___ / /___ ______ __________/ /__ ____
/ / / / __ \/ //_/ | /| / / __ `/ ___/ __ / _ \/ __ \
/ /___/ / / / / ,< | |/ |/ / /_/ / / / /_/ / __/ / / /
/_____/_/_/ /_/_/|_| |__/|__/\__,_/_/ \__,_/\___/_/ /_/

Some files were not shown because too many files have changed in this diff Show More