fix
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
delfin
|
delfin
|
||||||
rofi
|
|
||||||
rofi-calc
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -162,6 +162,7 @@
|
|||||||
"$mod, F, fullscreen, 0"
|
"$mod, F, fullscreen, 0"
|
||||||
|
|
||||||
"$mod, Space, exec, pkill rofi || rofi -show drun"
|
"$mod, Space, exec, pkill rofi || rofi -show drun"
|
||||||
|
"$mod, C, exec, pkill rofi || rofi -show calc -modi calc -no-show-match -no-sort"
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
# workspaces
|
# workspaces
|
||||||
|
|||||||
+13
-13
@@ -1,22 +1,22 @@
|
|||||||
{pkgs, ...}: let
|
{pkgs, ...}: let
|
||||||
# wofiSource = pkgs.fetchFromGitHub {
|
rofiSource = pkgs.fetchFromGitHub {
|
||||||
# owner = "adi1090x";
|
owner = "adi1090x";
|
||||||
# repo = "rofi";
|
repo = "rofi";
|
||||||
# rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
|
rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
|
||||||
# hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
|
hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
|
||||||
# };
|
};
|
||||||
wofiSource = builtins.toPath ./launcher;
|
# wofiSource = builtins.toPath ./launcher;
|
||||||
in {
|
in {
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = with pkgs; [
|
plugins = with pkgs; [
|
||||||
rofi-calc
|
rofi-calc
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# home.file.".config/wofi" = {
|
home.file.".config/rofi" = {
|
||||||
# source = wofiSource;
|
source = rofiSource;
|
||||||
# recursive = true;
|
recursive = true;
|
||||||
# force = true;
|
force = true;
|
||||||
# };
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user