diff options
Diffstat (limited to 'raveos-hyprland-theme/theme-data')
3 files changed, 95 insertions, 2 deletions
diff --git a/raveos-hyprland-theme/theme-data/hypr/config/windowrules.lua b/raveos-hyprland-theme/theme-data/hypr/config/windowrules.lua index 8d2eeb8..811b79e 100644 --- a/raveos-hyprland-theme/theme-data/hypr/config/windowrules.lua +++ b/raveos-hyprland-theme/theme-data/hypr/config/windowrules.lua @@ -79,6 +79,12 @@ hl.window_rule({ }) hl.window_rule({ + name = "windowrule-14", + match = { class = "vivaldi-stable" }, + size = { 1920, 1080 }, +}) + +hl.window_rule({ name = "fix-xwayland-drags", match = { class = "^$", diff --git a/raveos-hyprland-theme/theme-data/hypr/hyprland.lua b/raveos-hyprland-theme/theme-data/hypr/hyprland.lua index 7af6a24..2011427 100644 --- a/raveos-hyprland-theme/theme-data/hypr/hyprland.lua +++ b/raveos-hyprland-theme/theme-data/hypr/hyprland.lua @@ -160,6 +160,12 @@ hl.config({ }, }) +hl.config({ + cursor = { + no_warps = true, + }, +}) + hl.gesture({ fingers = 3, direction = "horizontal", diff --git a/raveos-hyprland-theme/theme-data/raveswitch/config.ron b/raveos-hyprland-theme/theme-data/raveswitch/config.ron index 72bdd16..c2c8aa9 100644 --- a/raveos-hyprland-theme/theme-data/raveswitch/config.ron +++ b/raveos-hyprland-theme/theme-data/raveswitch/config.ron @@ -2,9 +2,90 @@ ( version: 4, windows: ( - switch: Some(modifier: "Alt", key: "Tab", filter_by: [current_monitor], switch_workspaces: false, exclude_workspaces: "", kill_key: 'q'), + scale: 8.5, + items_per_row: 5, + overview: None, + switch: ( + modifier: "super", + key: "Tab", + filter_by: [ + current_monitor, + ], + switch_workspaces: false, + exclude_workspaces: "", + kill_key: 'q', + ), + switch_2: None, + ), + appearance: ( + max_columns: 10, + card_width: 150, + card_height: 150, + icon_width: 60, + icon_height: 60, + border_radius: 6, + margin: 11, + card_padding: 6, + font_size: 12, + show_title: true, + show_workspace: false, + highlight_active: true, + app_name_only: false, + ), + colors: ( + background: "#000000d2", + border: "#ffffff18", + selected_border: "auto", + text: "#ffffffcc", + text_selected: "#ffffff", + icon_color_accent: true, + accent_background_opacity: 0.5, + selected_border_width: 2, + ), + animations: ( + open_duration: 180, + close_duration: 180, + select_duration: 250, + easing: "ease-in-out", + open_animation: "slide-up", + scale_from: 1.0, + slide_offset: 30, + ), + effects: ( + panel_blur: true, + panel_blur_size: 20, + card_blur: true, + card_blur_size: 8, + panel_shadow: true, + panel_shadow_color: "#00000050", + panel_shadow_range: 4, + card_shadow: true, + card_shadow_color: "#00000050", + card_shadow_range: 4, + icon_glow: true, + icon_glow_strength: 22, + dim_inactive: 0.5, ), behavior: ( + filter_current_workspace: false, + filter_current_monitor: false, + sort_by_mru: true, + wrap_selection: true, + mouse_hover_select: true, + click_to_focus: true, close_on_mod_release: true, ), -) + icon_color: ( + hue_sensitivity: 5.0, + min_saturation: 0.25, + min_lightness: 0.25, + max_lightness: 0.7, + cache_size: 200, + fallback_color: "#7C3AED", + extracted_colors: 1, + multi_color_display: "gradient", + multi_color_gradient_style: "radial", + multi_color_animation: false, + multi_color_effect: "glow", + ), +)
\ No newline at end of file |