initial version (alpha)
This commit is contained in:
commit
b5de726919
58 changed files with 1237 additions and 0 deletions
9
system_files/usr/bin/apt
Executable file
9
system_files/usr/bin/apt
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
# Redirect to dnf5 if we are running inside a container
|
||||
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
|
||||
exec dnf5 "$@"
|
||||
fi
|
||||
|
||||
echo -e "Looks like you are trying to use apt on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
|
||||
exit 1
|
9
system_files/usr/bin/dnf
Executable file
9
system_files/usr/bin/dnf
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
# Redirect to dnf5 if we are running inside a container
|
||||
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
|
||||
exec dnf5 "$@"
|
||||
fi
|
||||
|
||||
echo -e "Looks like you are trying to use DNF on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
|
||||
exit 1
|
3
system_files/usr/bin/eveos-bluetooth
Executable file
3
system_files/usr/bin/eveos-bluetooth
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
/usr/bin/blueman-manager
|
||||
hyprctl dispatch workspace 1
|
3
system_files/usr/bin/eveos-diagnose-startup
Normal file
3
system_files/usr/bin/eveos-diagnose-startup
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
systemd-analyze critical-chain
|
||||
read -p "Press Enter to continue..."
|
5
system_files/usr/bin/eveos-update
Executable file
5
system_files/usr/bin/eveos-update
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
kitten icat --align=center /usr/share/pixmaps/eveos-logo-small.png
|
||||
sudo bootc upgrade --apply --soft-reboot=auto
|
||||
read -p "Press Enter to continue..."
|
||||
hyprctl dispatch workspace 1
|
3
system_files/usr/bin/eveos-wifi
Executable file
3
system_files/usr/bin/eveos-wifi
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
nmtui-connect
|
||||
hyprctl dispatch workspace 1
|
3
system_files/usr/bin/start-eve
Executable file
3
system_files/usr/bin/start-eve
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
pgrep -f "eve-lite.AppImage" > /dev/null || /Applications/eve-lite.AppImage &
|
9
system_files/usr/bin/yum
Executable file
9
system_files/usr/bin/yum
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
# Redirect to dnf5 if we are running inside a container
|
||||
if systemd-detect-virt -cq || { [[ -e /run/.containerenv || -e /.dockerenv ]]; }; then
|
||||
exec dnf5 "$@"
|
||||
fi
|
||||
|
||||
echo -e "Looks like you are trying to use yum on EveOS, please read our documentation here\nhttps://arx-ccn.com/eveos/dnf"
|
||||
exit 1
|
Loading…
Add table
Add a link
Reference in a new issue