This commit is contained in:
2025-12-07 19:04:23 +03:00
parent 978060c5ef
commit 8c848be9e2
7 changed files with 187 additions and 33 deletions
+3
View File
@@ -36,6 +36,7 @@
pywal
jq
];
programs.vicinae.enable = true;
services.swww.enable = true;
programs.hyprpanel = {
enable = true;
@@ -52,6 +53,7 @@
enable = true;
plugins = [ pkgs.hyprlandPlugins.hyprexpo ];
settings = {
layerrule = [ "noanim, vicinae" "blur,vicinae" "ignorealpha 0, vicinae" ];
env = [ "XCURSOR_SIZE,24" "HYPRCURSOR_SIZE,24" ];
exec-once = [
@@ -61,6 +63,7 @@
# "(swww-daemon &) && sleep 2 && swww img /home/krosh/Pictures/wallpaper.png"
# "hyprctl hyprpaper reload ,~/Pictures/wallpaper.png"
"hyprpanel &"
"vicinae server &"
"gsettings set org.gnome.desktop.interface cursor-theme '${config.home.pointerCursor.name}'"
"gsettings set org.gnome.desktop.interface cursor-size ${
toString config.home.pointerCursor.size
@@ -15,7 +15,9 @@
wayland.windowManager.hyprland.settings = let super = "Super";
in {
bind = [
"${super}, Super_L, exec, pkill fuzzel || fuzzel"
# "${super}, Super_L, exec, pkill fuzzel || fuzzel"
"Ctrl, Space, exec, vicinae toggle"
"${super}, Super_L, exec, vicinae toggle"
# "${super}, g, hyprexpo:expo, toggle"
"${super}, H, exec, ~/.config/hypr/scripts/hide_window.sh h"
+1 -1
View File
@@ -23,7 +23,7 @@
background {
color = rgba(181818FF)
path = /home/krosh-Arch/Pictures/Wallpapers/wallhaven-w5q8px_upscayl_2x_digital-art-4x.png
path = ${config.home.homeDirectory}/Pictures/wallpaper.png
blur_size = 4
blur_passes = 3
+27
View File
@@ -35,4 +35,31 @@
imports = [ inputs.zen-browser.homeModules.twilight ];
programs.zen-browser = { enable = true; };
xdg.mimeApps = let
value = let
system = pkgs.stdenv.hostPlatform.system;
zen-browser = inputs.zen-browser.packages.${system}.twilight;
in zen-browser.meta.desktopFileName;
associations = builtins.listToAttrs (map (name: { inherit name value; }) [
"application/x-extension-shtml"
"application/x-extension-xhtml"
"application/x-extension-html"
"application/x-extension-xht"
"application/x-extension-htm"
"x-scheme-handler/unknown"
"x-scheme-handler/mailto"
"x-scheme-handler/chrome"
"x-scheme-handler/about"
"x-scheme-handler/https"
"x-scheme-handler/http"
"application/xhtml+xml"
"application/json"
"text/html"
]);
in {
associations.added = associations;
defaultApplications = associations;
};
}