diff --git a/hypr/conf/animation.conf b/hypr/conf/animation.conf index aed3048..eb0250a 100644 --- a/hypr/conf/animation.conf +++ b/hypr/conf/animation.conf @@ -1 +1 @@ -source = ~/dotfiles/hypr/conf/animations/animations-low.conf \ No newline at end of file +source = ~/dotfiles/hypr/conf/animations/default.conf \ No newline at end of file diff --git a/hypr/conf/animations/animations-high.conf b/hypr/conf/animations/animations-high.conf index c49406f..2fc765f 100644 --- a/hypr/conf/animations/animations-high.conf +++ b/hypr/conf/animations/animations-high.conf @@ -1,5 +1,6 @@ # ----------------------------------------------------- # Animations +# name: "High" # ----------------------------------------------------- animations { enabled = true diff --git a/hypr/conf/animations/animations-low.conf b/hypr/conf/animations/default.conf similarity index 96% rename from hypr/conf/animations/animations-low.conf rename to hypr/conf/animations/default.conf index 61e9d2f..566f68c 100644 --- a/hypr/conf/animations/animations-low.conf +++ b/hypr/conf/animations/default.conf @@ -1,5 +1,6 @@ # ----------------------------------------------------- # Animations +# name: "Default" # ----------------------------------------------------- animations { enabled = true diff --git a/hypr/conf/decoration.conf b/hypr/conf/decoration.conf index 1d9ff61..7f906f4 100644 --- a/hypr/conf/decoration.conf +++ b/hypr/conf/decoration.conf @@ -1 +1 @@ -source = ~/dotfiles/hypr/conf/decorations/decoration.conf \ No newline at end of file +source = ~/dotfiles/hypr/conf/decorations/default.conf \ No newline at end of file diff --git a/hypr/conf/decorations/decoration.conf b/hypr/conf/decorations/default.conf similarity index 96% rename from hypr/conf/decorations/decoration.conf rename to hypr/conf/decorations/default.conf index 0c219a4..ab5bc81 100644 --- a/hypr/conf/decorations/decoration.conf +++ b/hypr/conf/decorations/default.conf @@ -1,5 +1,6 @@ # ----------------------------------------------------- # General window decoration +# name: "Default" # ----------------------------------------------------- decoration { diff --git a/hypr/conf/decorations/no-rounding.conf b/hypr/conf/decorations/no-rounding.conf new file mode 100644 index 0000000..d19e7c7 --- /dev/null +++ b/hypr/conf/decorations/no-rounding.conf @@ -0,0 +1,25 @@ +# ----------------------------------------------------- +# General window decoration +# name: "No Rounding" +# ----------------------------------------------------- + +decoration { + rounding = 0 + blur { + enabled = true + size = 6 + passes = 2 + new_optimizations = on + ignore_opacity = true + xray = true + # blurls = waybar + } + active_opacity = 1.0 + inactive_opacity = 0.8 + fullscreen_opacity = 1.0 + + drop_shadow = true + shadow_range = 30 + shadow_render_power = 3 + col.shadow = 0x66000000 +} diff --git a/hypr/conf/keyboard.conf b/hypr/conf/keyboard.conf index 73114a4..8d6136b 100644 --- a/hypr/conf/keyboard.conf +++ b/hypr/conf/keyboard.conf @@ -3,7 +3,6 @@ # ----------------------------------------------------- input { kb_layout = us - # kb_layout = us follow_mouse = 1 touchpad { natural_scroll = false diff --git a/hypr/conf/monitor.conf b/hypr/conf/monitor.conf index 176e42b..140404b 100644 --- a/hypr/conf/monitor.conf +++ b/hypr/conf/monitor.conf @@ -1,8 +1 @@ -# ----------------------------------------------------- -# Monitor Setup -# See https://wiki.hyprland.org/Configuring/Monitors/ -# ----------------------------------------------------- - -monitor=,preferred,auto,1 -# monitor=,1920x1080,auto,1 -# monitor=,2560x1440@120,auto,1 \ No newline at end of file +source = ~/dotfiles/hypr/conf/monitor/default.conf diff --git a/hypr/conf/monitor/1920x1080.conf b/hypr/conf/monitor/1920x1080.conf new file mode 100644 index 0000000..980be0e --- /dev/null +++ b/hypr/conf/monitor/1920x1080.conf @@ -0,0 +1,6 @@ +# ----------------------------------------------------- +# Monitor Setup +# name: "Default" +# ----------------------------------------------------- + +monitor=,1920x1080,auto,1 \ No newline at end of file diff --git a/hypr/conf/monitor/2560x1440@120.conf b/hypr/conf/monitor/2560x1440@120.conf new file mode 100644 index 0000000..c0dbac6 --- /dev/null +++ b/hypr/conf/monitor/2560x1440@120.conf @@ -0,0 +1,6 @@ +# ----------------------------------------------------- +# Monitor Setup +# name: "Default" +# ----------------------------------------------------- + +monitor=,2560x1440@120,auto,1 \ No newline at end of file diff --git a/hypr/conf/monitor/default.conf b/hypr/conf/monitor/default.conf new file mode 100644 index 0000000..1eced60 --- /dev/null +++ b/hypr/conf/monitor/default.conf @@ -0,0 +1,6 @@ +# ----------------------------------------------------- +# Monitor Setup +# name: "Default" +# ----------------------------------------------------- + +monitor=,preferred,auto,1 \ No newline at end of file diff --git a/hypr/conf/window.conf b/hypr/conf/window.conf index c7f6633..c8c0e50 100644 --- a/hypr/conf/window.conf +++ b/hypr/conf/window.conf @@ -1 +1 @@ -source = ~/dotfiles/hypr/conf/windows/window.conf +source = ~/dotfiles/hypr/conf/windows/default.conf diff --git a/hypr/conf/windows/window.conf b/hypr/conf/windows/default.conf similarity index 94% rename from hypr/conf/windows/window.conf rename to hypr/conf/windows/default.conf index 084cd09..9ac7993 100644 --- a/hypr/conf/windows/window.conf +++ b/hypr/conf/windows/default.conf @@ -1,5 +1,6 @@ # ----------------------------------------------------- # General window layout and colors +# name: "Default" # ----------------------------------------------------- general { diff --git a/hypr/conf/windows/no-border.conf b/hypr/conf/windows/no-border.conf new file mode 100644 index 0000000..1563908 --- /dev/null +++ b/hypr/conf/windows/no-border.conf @@ -0,0 +1,13 @@ +# ----------------------------------------------------- +# General window layout and colors +# name: "No Border" +# ----------------------------------------------------- + +general { + gaps_in = 10 + gaps_out = 14 + border_size = 0 + col.active_border = $color11 + col.inactive_border = rgba(ffffffff) + layout = dwindle +}