From b86bc722d874ee93a49f0b3b8fda4a90a4965746 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Sat, 18 Jun 2022 21:22:34 +0530 Subject: /etc/ and /grub/ files for install script --- etc/systemd/logind.conf | 48 ++++++++++++++++++++++ etc/systemd/sleep.conf | 26 ++++++++++++ etc/systemd/system/betterlockscreen@.service | 16 ++++++++ etc/systemd/system/grub-btrfs.path | 12 ++++++ .../sysinit.target.wants/systemd-timesyncd.service | 1 + 5 files changed, 103 insertions(+) create mode 100644 etc/systemd/logind.conf create mode 100644 etc/systemd/sleep.conf create mode 100644 etc/systemd/system/betterlockscreen@.service create mode 100644 etc/systemd/system/grub-btrfs.path create mode 120000 etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service (limited to 'etc') diff --git a/etc/systemd/logind.conf b/etc/systemd/logind.conf new file mode 100644 index 0000000..c004d34 --- /dev/null +++ b/etc/systemd/logind.conf @@ -0,0 +1,48 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it under the +# terms of the GNU Lesser General Public License as published by the Free +# Software Foundation; either version 2.1 of the License, or (at your option) +# any later version. +# +# Entries in this file show the compile time defaults. Local configuration +# should be created by either modifying this file, or by creating "drop-ins" in +# the logind.conf.d/ subdirectory. The latter is generally recommended. +# Defaults can be restored by simply deleting this file and all drop-ins. +# +# Use 'systemd-analyze cat-config systemd/logind.conf' to display the full config. +# +# See logind.conf(5) for details. + +[Login] +#NAutoVTs=6 +#ReserveVT=6 +#KillUserProcesses=no +#KillOnlyUsers= +#KillExcludeUsers=root +#InhibitDelayMaxSec=5 +#UserStopDelaySec=10 +#HandlePowerKey=poweroff +#HandlePowerKeyLongPress=ignore +#HandleRebootKey=reboot +#HandleRebootKeyLongPress=poweroff +#HandleSuspendKey=suspend +#HandleSuspendKeyLongPress=hibernate +#HandleHibernateKey=hibernate +#HandleHibernateKeyLongPress=ignore +#HandleLidSwitch=suspend +#HandleLidSwitchExternalPower=suspend +#HandleLidSwitchDocked=ignore +#PowerKeyIgnoreInhibited=no +#SuspendKeyIgnoreInhibited=no +#HibernateKeyIgnoreInhibited=no +#LidSwitchIgnoreInhibited=yes +#RebootKeyIgnoreInhibited=no +#HoldoffTimeoutSec=30s +#IdleAction=ignore +#IdleActionSec=30min +#RuntimeDirectorySize=10% +#RuntimeDirectoryInodesMax= +#RemoveIPC=yes +#InhibitorsMax=8192 +#SessionsMax=8192 diff --git a/etc/systemd/sleep.conf b/etc/systemd/sleep.conf new file mode 100644 index 0000000..174f5ea --- /dev/null +++ b/etc/systemd/sleep.conf @@ -0,0 +1,26 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it under the +# terms of the GNU Lesser General Public License as published by the Free +# Software Foundation; either version 2.1 of the License, or (at your option) +# any later version. +# +# Entries in this file show the compile time defaults. Local configuration +# should be created by either modifying this file, or by creating "drop-ins" in +# the sleep.conf.d/ subdirectory. The latter is generally recommended. +# Defaults can be restored by simply deleting this file and all drop-ins. +# +# See systemd-sleep.conf(5) for details. + +[Sleep] +#AllowSuspend=yes +#AllowHibernation=yes +#AllowSuspendThenHibernate=yes +#AllowHybridSleep=yes +#SuspendMode= +#SuspendState=mem standby freeze +#HibernateMode=platform shutdown +#HibernateState=disk +#HybridSleepMode=suspend platform shutdown +#HybridSleepState=disk +#HibernateDelaySec=180min diff --git a/etc/systemd/system/betterlockscreen@.service b/etc/systemd/system/betterlockscreen@.service new file mode 100644 index 0000000..012789a --- /dev/null +++ b/etc/systemd/system/betterlockscreen@.service @@ -0,0 +1,16 @@ +[Unit] +Description = Lock screen when going to sleep/suspend +Before=sleep.target +Before=suspend.target + +[Service] +User=%I +Type=simple +Environment=DISPLAY=:0 +ExecStart=/usr/bin/betterlockscreen --lock dimblur +TimeoutSec=infinity +ExecStartPost=/usr/bin/sleep 1 + +[Install] +WantedBy=sleep.target +WantedBy=suspend.target diff --git a/etc/systemd/system/grub-btrfs.path b/etc/systemd/system/grub-btrfs.path new file mode 100644 index 0000000..932f266 --- /dev/null +++ b/etc/systemd/system/grub-btrfs.path @@ -0,0 +1,12 @@ +[Unit] +Description=Monitors for new timeshift snapshots +DefaultDependencies=no +Requires=run-timeshift-backup.mount +After=run-timeshift-backup.mount +BindsTo=run-timeshift-backup.mount + +[Path] +PathModified=/run/timeshift/backup/timeshift-btrfs/snapshots + +[Install] +WantedBy=run-timeshift-backup.mount \ No newline at end of file diff --git a/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service b/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service new file mode 120000 index 0000000..cd00411 --- /dev/null +++ b/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-timesyncd.service \ No newline at end of file -- cgit v1.2.3