endos.py
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
[terminal]
|
||||
# The VT to run the greeter on. Can be "next", "current" or a number
|
||||
# designating the VT.
|
||||
vt = 1
|
||||
|
||||
# The default session, also known as the greeter.
|
||||
[default_session]
|
||||
|
||||
# `agreety` is the bundled agetty/login-lookalike. You can replace `/bin/sh`
|
||||
# with whatever you want started, such as `sway`.
|
||||
command = "start-sway --unsupported-gpu --config /etc/greetd/sway-config 2> /etc/sway/sway.log"
|
||||
|
||||
# The user to run the command as. The privileges this user must have depends
|
||||
# on the greeter. A graphical greeter may for example require the user to be
|
||||
# in the `video` group.
|
||||
user = "greeter"
|
||||
@@ -1,2 +0,0 @@
|
||||
sway
|
||||
bash
|
||||
@@ -1,23 +0,0 @@
|
||||
[General]
|
||||
Backend = GreetD
|
||||
Theme = sidebar
|
||||
BlurBackground = true
|
||||
IconTheme = breeze
|
||||
|
||||
[Overrides]
|
||||
Background = /usr/share/qtgreet/backgrounds/Water.svg
|
||||
BaseColor = Theme
|
||||
TextColor = Theme
|
||||
FontFamily = Noto Sans
|
||||
|
||||
[videobg]
|
||||
File =
|
||||
Playlist =
|
||||
|
||||
[Environment]
|
||||
|
||||
[PowerCommands]
|
||||
Suspend = dbus
|
||||
Hibernate = dbus
|
||||
Shutdown = dbus
|
||||
Reboot = dbus
|
||||
@@ -0,0 +1,8 @@
|
||||
[Login]
|
||||
IdleAction=suspend-then-hibernate
|
||||
IdleActionSec=10min
|
||||
HandlePowerKey=suspend-then-hibernate
|
||||
HandlePowerKeyLongPress=poweroff
|
||||
HandleLidSwitch=suspend-then-hibernate
|
||||
HandleLidSwitchExternalPower=suspend-then-hibernate
|
||||
HandleLidSwitchDocked=ignore
|
||||
@@ -0,0 +1,2 @@
|
||||
[sleep]
|
||||
HibernateDelaySec=30min
|
||||
@@ -1,19 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Session
|
||||
export XDG_SESSION_TYPE=wayland
|
||||
export XDG_SESSION_DESKTOP=sway
|
||||
export XDG_CURRENT_DESKTOP=sway
|
||||
|
||||
# Environment
|
||||
# Source environmental variable from all files in PATH_ENVIRONMENT
|
||||
# file should be named *.conf and have KEY=value format use # for comment
|
||||
PATH_ENVIRONMENT=$HOME/.config/environment.d
|
||||
if [ -d "$PATH_ENVIRONMENT" ]; then
|
||||
for i in "$PATH_ENVIRONMENT"/*.conf ; do
|
||||
if [ -f "$i" ]; then
|
||||
set -a; . "$i"; set +a
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
exec sway "$@"
|
||||
Reference in New Issue
Block a user