summaryrefslogtreecommitdiff
path: root/.config/hypr
diff options
context:
space:
mode:
Diffstat (limited to '.config/hypr')
-rwxr-xr-x.config/hypr/config.d/autostart.sh11
-rw-r--r--.config/hypr/config.d/idle5
-rw-r--r--.config/hypr/config.d/input.conf2
-rw-r--r--.config/hypr/config.d/theme.conf18
-rw-r--r--.config/hypr/hyprland.conf7
-rw-r--r--.config/hypr/monitors.conf6
-rwxr-xr-x.config/hypr/scripts.d/autostart.sh3
-rwxr-xr-x.config/hypr/scripts.d/systemd.sh8
-rw-r--r--.config/hypr/workspaces.conf3
9 files changed, 33 insertions, 30 deletions
diff --git a/.config/hypr/config.d/autostart.sh b/.config/hypr/config.d/autostart.sh
deleted file mode 100755
index b506e3d..0000000
--- a/.config/hypr/config.d/autostart.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-waybar --config $HOME/.config/waybar/config.hypr &
-
-nm-applet --indicator &
-
-/usr/bin/gnome-keyring-daemon --foreground &
-
-discord &
-element-desktop &
-thunderbird &
diff --git a/.config/hypr/config.d/idle b/.config/hypr/config.d/idle
new file mode 100644
index 0000000..2b239fe
--- /dev/null
+++ b/.config/hypr/config.d/idle
@@ -0,0 +1,5 @@
+# Turn off display after tiemout
+exec swayidle -w \
+ timeout 300 'swaylock' \
+ timeout 300 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
+ before-sleep 'swaylock'
diff --git a/.config/hypr/config.d/input.conf b/.config/hypr/config.d/input.conf
index 0ea3797..69fe174 100644
--- a/.config/hypr/config.d/input.conf
+++ b/.config/hypr/config.d/input.conf
@@ -7,7 +7,7 @@ input {
kb_layout = us
kb_variant =
kb_model =
- kb_options = gtp:alt_shit_toggle, compose:rctrl
+ kb_options = gtp:alt_shit_toggle, compose:ralt
kb_rules =
follow_mouse = 1
diff --git a/.config/hypr/config.d/theme.conf b/.config/hypr/config.d/theme.conf
index 09a624d..ff284b2 100644
--- a/.config/hypr/config.d/theme.conf
+++ b/.config/hypr/config.d/theme.conf
@@ -1,15 +1,17 @@
general {
gaps_in = 6
- gaps_out = $gaps
+ gaps_out = 10
border_size = $border
col.active_border = 0xffaaaaaa
col.inactive_border = 0xff777777
layout = dwindle
+ resize_on_border = yes
+ extend_border_grab_area = 20
}
group {
- col.border_active = 0x14171d 0x14171d 360deg
- col.border_inactive = 0x14171d 0x14171d 360deg
+ col.border_active = rgb(14171d) rgb(14171d) 0deg
+ col.border_inactive = rgb(14171d) rgb(14171d) 0deg
col.border_locked_active = rgb(14171d) rgb(14171d) 0deg
col.border_locked_inactive = rgb(14171d) rgb(14171d) 0deg
groupbar {
@@ -31,6 +33,12 @@ decoration {
shadow_range = 4
shadow_render_power = 3
col.shadow = rgba(1a1a1aee)
+
+ blur {
+ enabled = true
+ size = 5
+ passes = 2
+ }
}
animations {
@@ -45,8 +53,8 @@ animations {
}
xwayland {
- force_zero_scaling = true
- use_nearest_neighbor = false
+ force_zero_scaling = true
+ use_nearest_neighbor = false
}
env = GDK_BACKEND,wayland,x11
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf
index b0b267b..8674248 100644
--- a/.config/hypr/hyprland.conf
+++ b/.config/hypr/hyprland.conf
@@ -1,5 +1,3 @@
-exec-once = ~/.config/hypr/scripts.d/systemd.sh
-
$mod = SUPER
$term = kitty
@@ -8,12 +6,13 @@ $menu = wofi --allow-images --show drun --prompt "Search Program"
$scale = 1.25
-$radius = 5
-$gaps = 10
+$radius = 0
$border = 0
$browser = librewolf
+exec-once = ~/.config/hypr/scripts.d/systemd.sh
+
source = ~/.config/hypr/config.d/keybinds.conf
source = ~/.config/hypr/config.d/theme.conf
source = ~/.config/hypr/config.d/input.conf
diff --git a/.config/hypr/monitors.conf b/.config/hypr/monitors.conf
index af042dd..045cac0 100644
--- a/.config/hypr/monitors.conf
+++ b/.config/hypr/monitors.conf
@@ -1,4 +1,4 @@
-# Generated by nwg-displays on 2024-05-08 at 19:19:19. Do not edit manually.
+# Generated by nwg-displays on 2024-06-05 at 18:46:28. Do not edit manually.
-monitor=eDP-1,2560x1600@90.0,0x0,1.25,bitdepth,10
-monitor=HDMI-A-1,2560x1440@59.95,2048x0,1.0
+monitor=eDP-1,2560x1600@90.0,2560x0,1.25
+monitor=DP-2,2560x1440@59.95,0x0,1.0
diff --git a/.config/hypr/scripts.d/autostart.sh b/.config/hypr/scripts.d/autostart.sh
index 01a34e2..7da98a9 100755
--- a/.config/hypr/scripts.d/autostart.sh
+++ b/.config/hypr/scripts.d/autostart.sh
@@ -9,7 +9,8 @@ wl-clip-persist --clipboard both &
gtk-launch discord &
gtk-launch io.element.Element &
-thunderbird &
+gtk-launch org.gajim.Gajim &
+gtk-launch org.mozilla.Thunderbird &
hyprpaper &
hypridle &
diff --git a/.config/hypr/scripts.d/systemd.sh b/.config/hypr/scripts.d/systemd.sh
index 8fd5c39..32b5528 100755
--- a/.config/hypr/scripts.d/systemd.sh
+++ b/.config/hypr/scripts.d/systemd.sh
@@ -4,9 +4,13 @@ systemctl --user set-environment XDG_CURRENT_DESKTOP=Hyprland
systemctl --user import-environment DISPLAY \
WAYLAND_DISPLAY \
XDG_CURRENT_DESKTOP \
- GTK_THEME
+ GTK_THEME \
+ QT_QPA_PLATFORMTHEME
+
hash dbus-update-activation-environment 2>/dev/null && \
dbus-update-activation-environment --systemd DISPLAY \
XDG_CURRENT_DESKTOP=Hyprland \
- WAYLAND_DISPLAY
+ WAYLAND_DISPLAY \
+ GTK_THEME \
+ QT_QPA_PLATFORMTHEME
diff --git a/.config/hypr/workspaces.conf b/.config/hypr/workspaces.conf
deleted file mode 100644
index 38de981..0000000
--- a/.config/hypr/workspaces.conf
+++ /dev/null
@@ -1,3 +0,0 @@
-# Generated by nwg-displays on 2024-04-15 at 22:15:31. Do not edit manually.
-
-workspace=9,monitor:eDP-1,default:true