mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Compare commits
No commits in common. "3e631349a3dd2c782a5aa634b450eaafef0f18b1" and "11c1af3e15bb232015afd8b8e7296fa099e6c2b4" have entirely different histories.
3e631349a3
...
11c1af3e15
|
@ -178,6 +178,7 @@
|
|||
libffi zlib
|
||||
nodePackages.ungit
|
||||
ventoy
|
||||
nextcloud-client
|
||||
]) ++ ([ pkgs-kdenlive.kdenlive ]);
|
||||
|
||||
home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source =
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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" "-"];
|
||||
|
|
Loading…
Reference in a new issue