This commit is contained in:
biscuit
2025-06-02 15:12:37 -05:00
parent ba7174224c
commit 12e64d34e6
4 changed files with 14 additions and 15 deletions
-2
View File
@@ -1,7 +1,5 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
delfin
rofi
rofi-calc
];
}
+1
View File
@@ -162,6 +162,7 @@
"$mod, F, fullscreen, 0"
"$mod, Space, exec, pkill rofi || rofi -show drun"
"$mod, C, exec, pkill rofi || rofi -show calc -modi calc -no-show-match -no-sort"
]
++ (
# workspaces
View File
+13 -13
View File
@@ -1,22 +1,22 @@
{pkgs, ...}: let
# wofiSource = pkgs.fetchFromGitHub {
# owner = "adi1090x";
# repo = "rofi";
# rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
# hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
# };
wofiSource = builtins.toPath ./launcher;
rofiSource = pkgs.fetchFromGitHub {
owner = "adi1090x";
repo = "rofi";
rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
};
# wofiSource = builtins.toPath ./launcher;
in {
programs.rofi = {
enable = true;
package = with pkgs; [
plugins = with pkgs; [
rofi-calc
];
};
# home.file.".config/wofi" = {
# source = wofiSource;
# recursive = true;
# force = true;
# };
home.file.".config/rofi" = {
source = rofiSource;
recursive = true;
force = true;
};
}