This commit is contained in:
2025-11-29 17:04:00 -05:00
parent 79591a8216
commit 59fd884cb3
7 changed files with 38 additions and 6 deletions

View File

@@ -16,13 +16,11 @@
# Create your files separately and then link them to this file like this:
# source = ~/.config/hypr/myColors.conf
################
### MONITORS ###
################
# See https://wiki.hyprland.org/Configuring/Monitors/
monitor=eDP-1,2880x1920@120.00,auto,1.875
source = ~/.config/hypr/monitors.conf
###################
### MY PROGRAMS ###
@@ -40,6 +38,12 @@ $menu = fuzzel
### AUTOSTART ###
#################
plugin {
hyprspace {
enabled = true
}
}
# Autostart necessary processes (like notifications daemons, status bars, etc.)
# Or execute your favorite apps at launch like this:
@@ -50,7 +54,7 @@ exec-once = systemctl --user restart hyprpolkitagent.service
exec = hyprpaper
exec-once = waybar
exec-once = nm-applet
exec-once = hyprsunset
exec = killall -9 hyprsunset && hyprsunset
exec-once = blueman-applet
exec-once = kdeconnect-indicator
exec-once = bash -c "source ~/.local/bin/riceman 2" # Sets system colorscheme to "4" (nord)
@@ -215,11 +219,16 @@ device {
# See https://wiki.hyprland.org/Configuring/Keywords/
$mainMod = SUPER # Sets "Windows" key as main modifier
bind = SUPER_SHIFT, O, overview:toggle
bind = SUPER_SHIFT, D, exec, ~/.config/hypr/switch.sh d
bind = SUPER_SHIFT, L, exec, ~/.config/hypr/switch.sh l
bind = , Print, exec, grim -g "$(slurp)" "/home/lw/Pictures/screenshot-$(date).png"
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
bind = $mainMod, Return, exec, $terminal
bind = $mainMod, L, exec, flatpak run io.gitlab.librewolf-community
bind = $mainMod, L, exec, librewolf
bind = $mainMod, Q, killactive,
bind = SUPER_SHIFT, E, exec, nwg-bar
bind = $mainMod, F, fullscreen

9
hyprsunset.conf Normal file
View File

@@ -0,0 +1,9 @@
profile {
time = 8:00
identity = true
}
profile {
time = 19:00
temperature = 4000
}

1
monitors.conf Symbolic link
View File

@@ -0,0 +1 @@
/home/arco/.config/hypr/monitors_desktop.conf

3
monitors_desktop.conf Normal file
View File

@@ -0,0 +1,3 @@
monitor=DP-2,1920x1080@75,2890x0,1
monitor=HDMI-A-1,1920x1080@144,1920x1080,1
monitor=DP-1,1920x1080@144,3840x1080,1

1
monitors_laptop.conf Normal file
View File

@@ -0,0 +1 @@
monitor=eDP-1,2880x1920@120.00,auto,1.875

9
switch.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
if [ "$1" = "d" ]; then
ln -svf ~/.config/hypr/monitors_desktop.conf ~/.config/hypr/monitors.conf
elif [ "$1" = "l" ]; then
ln -svf ~/.config/hypr/monitors_laptop.conf ~/.config/hypr/monitors.conf
fi
hyprctl reload

View File

@@ -1 +1 @@
/home/lw/.config/hypr/t_gruvbox.conf
/home/arco/.config/hypr/t_gruvbox.conf