Compare commits

..

No commits in common. "3e631349a3dd2c782a5aa634b450eaafef0f18b1" and "11c1af3e15bb232015afd8b8e7296fa099e6c2b4" have entirely different histories.

4 changed files with 19 additions and 2 deletions

View file

@ -178,6 +178,7 @@
libffi zlib libffi zlib
nodePackages.ungit nodePackages.ungit
ventoy ventoy
nextcloud-client
]) ++ ([ pkgs-kdenlive.kdenlive ]); ]) ++ ([ pkgs-kdenlive.kdenlive ]);
home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source = home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source =

View file

@ -732,6 +732,14 @@ If the path from LINK does not exist, nil is returned."
(dired org-roam-directory)) (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 () (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)" "Open ${org-roam-directory}/dashboard.org (I use this naming convention to create dashboards for each of my org roam maps)"
(interactive) (interactive)

View file

@ -871,6 +871,14 @@ exit
(dired org-roam-directory)) (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 () (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)" "Open ${org-roam-directory}/dashboard.org (I use this naming convention to create dashboards for each of my org roam maps)"
(interactive) (interactive)

View file

@ -854,8 +854,8 @@ in
"scratch_pavucontrol" = "_󰍰"; "scratch_pavucontrol" = "_󰍰";
}; };
"on-click" = "activate"; "on-click" = "activate";
"on-scroll-up" = "hyprnome"; "on-scroll-up" = "hyprctl dispatch workspace e+1";
"on-scroll-down" = "hyprnome --previous"; "on-scroll-down" = "hyprctl dispatch workspace e-1";
"all-outputs" = false; "all-outputs" = false;
"active-only" = false; "active-only" = false;
"ignore-workspaces" = ["scratch" "-"]; "ignore-workspaces" = ["scratch" "-"];