diff --git a/profiles/work/home.nix b/profiles/work/home.nix index e9ef317..271e111 100644 --- a/profiles/work/home.nix +++ b/profiles/work/home.nix @@ -178,6 +178,7 @@ libffi zlib nodePackages.ungit ventoy + nextcloud-client ]) ++ ([ pkgs-kdenlive.kdenlive ]); home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source = diff --git a/user/app/doom-emacs/config.el b/user/app/doom-emacs/config.el index f37c8d6..2b40c02 100644 --- a/user/app/doom-emacs/config.el +++ b/user/app/doom-emacs/config.el @@ -732,6 +732,14 @@ If the path from LINK does not exist, nil is returned." (dired org-roam-directory)) ) +(defun org-roam-open-inbox () + "Capture info in ${org-roam-directory}/inbox.org (I use this naming convention to create dashboards for each of my org roam maps)" + (interactive) + (if (file-exists-p (concat org-roam-directory "/inbox.org")) + (org-open-file (concat org-roam-directory "/inbox.org")) + (message "No inbox found, capture something with M-x org-roam-capture-inbox")) +) + (defun org-roam-open-inbox () "Open ${org-roam-directory}/dashboard.org (I use this naming convention to create dashboards for each of my org roam maps)" (interactive) diff --git a/user/app/doom-emacs/doom.org b/user/app/doom-emacs/doom.org index 0a5ae39..8a6172b 100644 --- a/user/app/doom-emacs/doom.org +++ b/user/app/doom-emacs/doom.org @@ -871,6 +871,14 @@ exit (dired org-roam-directory)) ) +(defun org-roam-open-inbox () + "Capture info in ${org-roam-directory}/inbox.org (I use this naming convention to create dashboards for each of my org roam maps)" + (interactive) + (if (file-exists-p (concat org-roam-directory "/inbox.org")) + (org-open-file (concat org-roam-directory "/inbox.org")) + (message "No inbox found, capture something with M-x org-roam-capture-inbox")) +) + (defun org-roam-open-inbox () "Open ${org-roam-directory}/dashboard.org (I use this naming convention to create dashboards for each of my org roam maps)" (interactive) diff --git a/user/wm/hyprland/hyprland.nix b/user/wm/hyprland/hyprland.nix index eab3766..e896110 100644 --- a/user/wm/hyprland/hyprland.nix +++ b/user/wm/hyprland/hyprland.nix @@ -854,8 +854,8 @@ in "scratch_pavucontrol" = "_󰍰"; }; "on-click" = "activate"; - "on-scroll-up" = "hyprnome"; - "on-scroll-down" = "hyprnome --previous"; + "on-scroll-up" = "hyprctl dispatch workspace e+1"; + "on-scroll-down" = "hyprctl dispatch workspace e-1"; "all-outputs" = false; "active-only" = false; "ignore-workspaces" = ["scratch" "-"];