-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Kanola-Images/dev
Update to upstream Orchid Stable
- Loading branch information
Showing
48 changed files
with
301 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
XCURSOR_PATH="/usr/share/icons:/usr/local/share/icons:~/.local/share/icons" |
7 changes: 0 additions & 7 deletions
7
includes.container/etc/skel/.config/autostart/abroot-rollback-notifier.desktop
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
includes.container/etc/skel/.config/autostart/vanillaos-vso-tasks-rotator.desktop
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
kernel.core_pattern = /var/tmp/core.%e.%p.%h.%t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Unit] | ||
Description=Podman container-apx-vso-pico.service | ||
Documentation=man:podman-generate-systemd(1) | ||
PartOf=graphical-session.target | ||
Requires=podman.service | ||
Wants=graphical-session.target | ||
After=graphical-session.target | ||
|
||
[Service] | ||
TimeoutStopSec=10 | ||
RemainAfterExit=yes | ||
ExecStop=/.system/usr/bin/podman stop -t 3 apx-vso-pico | ||
ExecStopPost=/.system/usr/bin/podman stop -t 3 apx-vso-pico | ||
|
||
[Install] | ||
WantedBy=graphical-session.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
KERNEL=="binder", NAME="%k", MODE="0666" | ||
KERNEL=="ashmem", NAMe="%k", MODE="0666" | ||
KERNEL=="binder", MODE="0666" | ||
KERNEL=="ashmem", MODE="0666" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[Desktop Entry] | ||
Name=Wayland/X Clipboard Sync | ||
Exec=systemctl --user start clipboard-sync | ||
Type=Application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
if [ "$1" == "--tty" ]; then | ||
echo "Are you sure you want to reset the VSO? This will remove all your installed software in the subsystem. [y/N]" | ||
read -r answer | ||
if [ "$answer" == "y" ]; then | ||
podman rm -f apx-vso-pico | ||
blackbox-terminal | ||
fi | ||
else | ||
adwdialog --title "Reset VSO?" \ | ||
--description "Are you sure you want to reset the VSO? This will remove all your installed software in the subsystem." \ | ||
--type "question" \ | ||
--icon "org.vanillaos.VSO" | ||
if [ $? -eq 0 ]; then | ||
podman rm -f apx-vso-pico | ||
blackbox-terminal | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
is_network_online() { | ||
nmcli -t g | grep -q "connected" | ||
return $? | ||
} | ||
|
||
retry_count=0 | ||
max_retries=30 | ||
|
||
until is_network_online; do | ||
if [ $retry_count -ge $max_retries ]; then | ||
echo "Network not available after 1 minute. Exiting." | ||
exit 1 | ||
fi | ||
echo "Waiting for network..." | ||
sleep 2 | ||
((retry_count++)) | ||
done | ||
|
||
echo "Network is online." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/bash | ||
|
||
if [[ -f /run/.containerenv ]]; then | ||
/usr/bin/waydroid "$@" | ||
exit | ||
fi | ||
|
||
if [[ "$1" == "app" ]]; then | ||
/usr/bin/vso android launch "$3" | ||
fi | ||
|
7 changes: 7 additions & 0 deletions
7
includes.container/usr/lib/systemd/system/clear-first-setup-steps.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Unit] | ||
Description=Cleans up First Setup steps | ||
After=local-fs.target | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/usr/bin/sh -c '/usr/bin/echo "" > /etc/org.vanillaos.FirstSetup.commands' |
31 changes: 0 additions & 31 deletions
31
includes.container/usr/lib/systemd/system/[email protected]
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
includes.container/usr/lib/systemd/user/vso-pre-run.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Unit] | ||
Description=VSO Shell Pre-Run | ||
|
||
[Service] | ||
ExecStartPre=/usr/bin/wait-for-connection | ||
ExecStart=/usr/bin/vso run -n -- ls | ||
Restart=always | ||
|
||
[Install] | ||
WantedBy=default.target |
8 changes: 8 additions & 0 deletions
8
includes.container/usr/lib/systemd/user/vso-tasks-rotation.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Unit] | ||
Description=VSO Tasks Rotation | ||
|
||
[Service] | ||
ExecStart=/usr/bin/vso tasks rotate | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
{ | ||
"autoRepair": true, | ||
"maxParallelDownloads": 2, | ||
"registry": "ghcr.io", | ||
"registryService": "registry.ghcr.io", | ||
"registryAPIVersion": "v2", | ||
"name": "Kanola-Images/base", | ||
"tag": "main", | ||
"iPkgMngPre": "lpkg --unlock", | ||
"iPkgMngPost": "lpkg --lock", | ||
"iPkgMngAdd": "apt-get install -y", | ||
"iPkgMngRm": "apt-get remove -y --autoremove", | ||
"iPkgMngApi": "https://packages.vanillaos.org/api/pkg/{packageName}", | ||
"iPkgMngStatus": 2, | ||
"differURL": "", | ||
"partLabelVar": "vos-var", | ||
"partLabelA": "vos-a", | ||
"partLabelB": "vos-b", | ||
"partLabelBoot": "vos-boot", | ||
"partLabelEfi": "vos-efi", | ||
"libPathStates": "/var/lib/abroot/states" | ||
"autoRepair": true, | ||
"maxParallelDownloads": 2, | ||
|
||
"registry": "ghcr.io", | ||
"registryService": "registry.ghcr.io", | ||
"registryAPIVersion": "v2", | ||
"name": "vanilla-os/desktop", | ||
"tag": "main", | ||
|
||
"iPkgMngPre": "lpkg --unlock", | ||
"iPkgMngPost": "lpkg --lock", | ||
"iPkgMngAdd": "apt-get install -y", | ||
"iPkgMngRm": "apt-get remove -y --autoremove", | ||
"iPkgMngApi": "https://packages.vanillaos.org/api/pkg/{packageName}", | ||
"iPkgMngStatus": 2, | ||
|
||
"differURL": "https://differ.vanillaos.org", | ||
|
||
"partLabelVar": "vos-var", | ||
"partLabelA": "vos-a", | ||
"partLabelB": "vos-b", | ||
"partLabelBoot": "vos-boot", | ||
"partLabelEfi": "vos-efi", | ||
|
||
"libPathStates": "/var/lib/abroot/states" | ||
} |
2 changes: 1 addition & 1 deletion
2
includes.container/usr/share/glib-2.0/schemas/90-vanilla-gnome-console-vso.gschema.override
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[com.raggesilver.BlackBox] | ||
use-custom-command = true | ||
custom-shell-command = "/usr/bin/vso-os-shell" | ||
custom-shell-command = "/usr/bin/vso-os-shell" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
includes.container/usr/share/polkit-1/rules.d/org.vanillaos.vso.rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: vanilla-gnome-default-settings | ||
type: dpkg-buildpackage | ||
source: | ||
type: git | ||
url: https://github.com/Vanilla-OS/vanilla-gnome-default-settings.git | ||
tag: v0.1 | ||
paths: | ||
- vanilla-gnome-default-settings | ||
modules: | ||
- name: vanilla-gnome-default-settings-deps-install | ||
type: apt | ||
source: | ||
packages: | ||
- dpkg-dev | ||
- libglib2.0-bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
name: vanilla-prime-utility | ||
type: dpkg-buildpackage | ||
source: | ||
type: git | ||
url: https://github.com/Vanilla-OS/vanilla-prime-utility | ||
tag: v1.0.3 | ||
paths: | ||
- vanilla-prime-utility | ||
modules: | ||
- name: vanilla-prime-utility-deps-install | ||
type: apt | ||
source: | ||
packages: | ||
- build-essential | ||
- gettext | ||
- libadwaita-1-dev | ||
- meson |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.