add launcher for scripts

This commit is contained in:
2025-11-21 04:26:32 +03:00
parent b1fd965700
commit 60aeff2748
7 changed files with 210 additions and 24 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
{ config, pkgs, ... }:
# TODO:
# - split into multiple files
# - configure comands like hyprpaper, waybar, etc.
# - make hyprexpo work
# - write config for hyprpanel
{
imports = [
@@ -13,7 +13,7 @@
# ./hyprland/rules.nix
# ./hyprland/colors.nix
# ./hyprland/active.nix
./hyprland/keybinds.nix # in process
./hyprland/keybinds.nix # done
./hyprlock.nix # done
./hypridle.nix # done
];
@@ -33,12 +33,12 @@
wayland.windowManager.hyprland = {
enable = true;
# plugins = [ hyprexpo ];
plugins = [ pkgs.hyprlandPlugins.hyprexpo ];
settings = {
env = [ "XCURSOR_SIZE,24" "HYPRCURSOR_SIZE,24" ];
exec-once = [
"hyprlock"
# "hyprlock"
"hyprpanel &"
"gsettings set org.gnome.desktop.interface cursor-theme '${config.home.pointerCursor.name}'"
"gsettings set org.gnome.desktop.interface cursor-size ${
@@ -209,7 +209,7 @@
workspace_method =
"first 1"; # [center/first] [workspace] e.g. first 1 or center m+1
enable_gesture = false; # laptop touchpad, 4 fingers
enable_gesture = true; # laptop touchpad, 4 fingers
gesture_distance = 300; # how far is the "max"
gesture_positive = false;
};