mirror of
https://github.com/ManInDark/bootc-image.git
synced 2026-01-20 22:44:28 +01:00
Compare commits
6 Commits
15fac4defc
...
68862744a5
| Author | SHA1 | Date | |
|---|---|---|---|
|
68862744a5
|
|||
|
27a21f003c
|
|||
|
317094fb3f
|
|||
|
edbbf79302
|
|||
|
3f2fda995e
|
|||
|
263952da37
|
@@ -4,8 +4,6 @@ set -ouex pipefail
|
|||||||
|
|
||||||
dnf5 install -y --setopt=exclude=gnome-tour,malcontent-control \
|
dnf5 install -y --setopt=exclude=gnome-tour,malcontent-control \
|
||||||
gnome-shell \
|
gnome-shell \
|
||||||
gnome-keyring \
|
|
||||||
gnome-keyring-pam \
|
|
||||||
gnome-terminal \
|
gnome-terminal \
|
||||||
gnome-bluetooth \
|
gnome-bluetooth \
|
||||||
gnome-calculator \
|
gnome-calculator \
|
||||||
@@ -18,7 +16,6 @@ dnf5 install -y \
|
|||||||
totem \
|
totem \
|
||||||
nautilus \
|
nautilus \
|
||||||
seahorse \
|
seahorse \
|
||||||
evolution \
|
|
||||||
gstreamer1-plugin-libav
|
gstreamer1-plugin-libav
|
||||||
|
|
||||||
git clone https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator.git /usr/share/gnome-shell/extensions/clipboard-indicator@tudmotu.com
|
git clone https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator.git /usr/share/gnome-shell/extensions/clipboard-indicator@tudmotu.com
|
||||||
@@ -3,4 +3,15 @@
|
|||||||
set -ouex pipefail
|
set -ouex pipefail
|
||||||
|
|
||||||
dnf5 copr enable -y solopasha/hyprland
|
dnf5 copr enable -y solopasha/hyprland
|
||||||
dnf5 install -y hyprland
|
dnf5 install -y \
|
||||||
|
hyprland \
|
||||||
|
hypridle \
|
||||||
|
hyprlock \
|
||||||
|
hyprpolkitagent \
|
||||||
|
waybar \
|
||||||
|
pavucontrol
|
||||||
|
|
||||||
|
cp /ctx/hypr* /usr/lib/systemd/system
|
||||||
|
for service in $(ls /ctx/hypr*); do
|
||||||
|
systemctl enable $service;
|
||||||
|
done
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
set -ouex pipefail
|
set -ouex pipefail
|
||||||
|
|
||||||
dnf5 install -y \
|
dnf5 install -y \
|
||||||
|
gnome-keyring \
|
||||||
|
gnome-keyring-pam \
|
||||||
|
evolution \
|
||||||
fzf \
|
fzf \
|
||||||
vlc \
|
vlc \
|
||||||
curl \
|
curl \
|
||||||
|
|||||||
50
build_files/hyprland.service
Normal file
50
build_files/hyprland.service
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
# /usr/lib/systemd/system/gdm.service
|
||||||
|
[Unit]
|
||||||
|
Description=Hyprland
|
||||||
|
|
||||||
|
# replaces the getty
|
||||||
|
Conflicts=getty@tty1.service
|
||||||
|
After=getty@tty1.service
|
||||||
|
|
||||||
|
# replaces plymouth-quit since it quits plymouth on its own
|
||||||
|
Conflicts=plymouth-quit.service
|
||||||
|
After=plymouth-quit.service
|
||||||
|
|
||||||
|
# Needs all the dependencies of the services it's replacing
|
||||||
|
# pulled from getty@.service and plymouth-quit.service
|
||||||
|
# (except for plymouth-quit-wait.service since it waits until
|
||||||
|
# plymouth is quit, which we do)
|
||||||
|
After=rc-local.service plymouth-start.service systemd-user-sessions.service
|
||||||
|
|
||||||
|
# GDM takes responsibility for stopping plymouth, so if it fails
|
||||||
|
# for any reason, make sure plymouth still stops
|
||||||
|
OnFailure=plymouth-quit.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=/usr/bin/hyprland
|
||||||
|
KillMode=mixed
|
||||||
|
Restart=always
|
||||||
|
IgnoreSIGPIPE=no
|
||||||
|
BusName=org.freedesktop.portal.Desktop
|
||||||
|
EnvironmentFile=-/etc/locale.conf
|
||||||
|
ExecReload=/bin/kill -SIGHUP $MAINPID
|
||||||
|
KeyringMode=shared
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
Alias=display-manager.service
|
||||||
|
|
||||||
|
# /usr/lib/systemd/system/service.d/10-timeout-abort.conf
|
||||||
|
# This file is part of the systemd package.
|
||||||
|
# See https://fedoraproject.org/wiki/Changes/Shorter_Shutdown_Timer.
|
||||||
|
#
|
||||||
|
# To facilitate debugging when a service fails to stop cleanly,
|
||||||
|
# TimeoutStopFailureMode=abort is set to "crash" services that fail to stop in
|
||||||
|
# the time allotted. This will cause the service to be terminated with SIGABRT
|
||||||
|
# and a coredump to be generated.
|
||||||
|
#
|
||||||
|
# To undo this configuration change, create a mask file:
|
||||||
|
# sudo mkdir -p /etc/systemd/system/service.d
|
||||||
|
# sudo ln -sv /dev/null /etc/systemd/system/service.d/10-timeout-abort.conf
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
TimeoutStopFailureMode=abort
|
||||||
Reference in New Issue
Block a user