feat: greetd plus minor patches and pkgs
This commit is contained in:
parent
f8ea3ea4e3
commit
148c8938e9
@ -4,6 +4,6 @@ general {
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 60
|
||||
timeout = 600
|
||||
on-timeout = loginctl lock-session
|
||||
}
|
||||
|
||||
@ -3,6 +3,6 @@ ipc = true
|
||||
|
||||
wallpaper {
|
||||
monitor =
|
||||
path = ~/Wallpapers/novosedly1.jpg
|
||||
path = ~/Wallpapers/arch_linux_gray.png
|
||||
fit_mode = cover
|
||||
}
|
||||
|
||||
@ -83,24 +83,14 @@
|
||||
"escape": true
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"format": "<b>{icon}</b>: {windows}",
|
||||
"format": "<b>[{icon}]</b> {windows}",
|
||||
"show-special" : true,
|
||||
"format-window-separator": " ",
|
||||
"workspace-taskbar": {
|
||||
// Enable the workspace taskbar. Default: false
|
||||
"enable": true,
|
||||
|
||||
// If true, the active/focused window will have an 'active' class. Could cause higher CPU usage due to more frequent redraws. Default: false
|
||||
"update-active-window": true,
|
||||
|
||||
// Format of the windows in the taskbar. Default: "{icon}". Allowed variables: {icon}, {title}
|
||||
"format": "{icon}",
|
||||
|
||||
// Icon size in pixels. Default: 16
|
||||
"icon-size": 20,
|
||||
|
||||
// Either the name of an installed icon theme or an array of themes (ordered by priority). If not set, the default icon theme is used.
|
||||
"icon-theme": "some_icon_theme",
|
||||
|
||||
// Orientation of the taskbar ("horizontal" or "vertical"). Default: "horizontal".
|
||||
"orientation": "horizontal"
|
||||
}
|
||||
},
|
||||
|
||||
@ -39,7 +39,7 @@ button:hover {
|
||||
padding: 4px 10px;
|
||||
margin: 4px 2px;
|
||||
border-radius: 6px;
|
||||
min-width: 40px;
|
||||
/* min-width: 40px; */
|
||||
background-color: rgba(63, 63, 63, 0.6);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
16
greetd/config.toml
Normal file
16
greetd/config.toml
Normal file
@ -0,0 +1,16 @@
|
||||
[terminal]
|
||||
# The VT to run the greeter on. Can be "next", "current" or a number
|
||||
# designating the VT.
|
||||
vt = 2
|
||||
|
||||
# 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-hyprland -- -c /etc/greetd/hyprland.conf"
|
||||
|
||||
# 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"
|
||||
6
greetd/hyprland.conf
Normal file
6
greetd/hyprland.conf
Normal file
@ -0,0 +1,6 @@
|
||||
exec-once = regreet; hyprctl dispatch exit
|
||||
misc {
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = true
|
||||
disable_hyprland_guiutils_check = true
|
||||
}
|
||||
7
greetd/regreet.toml
Normal file
7
greetd/regreet.toml
Normal file
@ -0,0 +1,7 @@
|
||||
[background]
|
||||
path = "usr/share/backgrounds/greetd/arch_linux_gray.png"
|
||||
fit = "Contain"
|
||||
|
||||
[commands]
|
||||
reboot = [ "systemctl", "reboot" ]
|
||||
poweroff = [ "systemctl", "poweroff" ]
|
||||
4
install_pkg.sh
Executable file
4
install_pkg.sh
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo xargs -a ./pkglist_arch.txt pacman -S --needed
|
||||
|
||||
15
pkglist_arch.txt
Normal file
15
pkglist_arch.txt
Normal file
@ -0,0 +1,15 @@
|
||||
hyprland
|
||||
hyprpaper
|
||||
hyprlock
|
||||
hypridle
|
||||
swaync
|
||||
uwsm
|
||||
wofi
|
||||
alacritty
|
||||
waybar
|
||||
thunar
|
||||
copyq
|
||||
greetd
|
||||
greetd-regreet
|
||||
pavucontrol
|
||||
blueman
|
||||
Loading…
x
Reference in New Issue
Block a user