Working on tasklauncher

This commit is contained in:
2026-03-08 09:16:22 +01:00
parent 3f19de6ae0
commit bc0e848888
6 changed files with 552 additions and 519 deletions
+476 -459
View File
File diff suppressed because it is too large Load Diff
+41 -30
View File
@@ -833,12 +833,50 @@ This is top file of this level which contains just an import statement for all r
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
imports = [
# No subfolders to import
./wofi.nix
];
# .. put any code here
}
#+END_SRC
** =generated/hyprland/task_launcher/wofi.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/task_launcher/wofi.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
programs.wofi = {
enable = true;
wrapGtkApps = true; # Required for GTK theming
extraPackages = with pkgs; [ wofi ];
};
# Catppuccin theme for Wofi
home-manager.users.${user.username} = {
xdg.configFile."wofi/config".text = ''
dark
width=500
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
'';
xdg.configFile."wofi/style.css".source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "wofi";
rev = "main";
sha256 = "sha256-0000000000000000000000000000000000000000000000000000"; # Update with the correct hash
file = "mocha.css"; # or latte/frappe/macchiato
};
};
# .. put any code here
}
#+END_SRC
** =generated/hyprland/task_window_workspace_switcher/top.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/task_window_workspace_switcher/top.nix :noweb tangle :mkdirp yes :eval never-html
@@ -946,7 +984,7 @@ This is top file of this level which contains just an import statement for all r
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
imports = [
./wofi.nix
# No subfolders to import
];
# .. put any code here
}
@@ -957,34 +995,7 @@ This is top file of this level which contains just an import statement for all r
#+BEGIN_SRC nix :tangle generated/mangowc/task_launcher/wofi.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
programs.wofi = {
enable = true;
wrapGtkApps = true; # Required for GTK theming
extraPackages = with pkgs; [ wofi ];
};
# Catppuccin theme for Wofi
home-manager.users.${user.username} = {
xdg.configFile."wofi/config".text = ''
dark
width=500
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
'';
xdg.configFile."wofi/style.css".source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "wofi";
rev = "main";
sha256 = "sha256-0000000000000000000000000000000000000000000000000000"; # Update with the correct hash
file = "mocha.css"; # or latte/frappe/macchiato
};
};
# .. put any code here
}
#+END_SRC
@@ -1,7 +1,7 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
imports = [
# No subfolders to import
./wofi.nix
];
# .. put any code here
}
@@ -0,0 +1,32 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
programs.wofi = {
enable = true;
wrapGtkApps = true; # Required for GTK theming
extraPackages = with pkgs; [ wofi ];
};
# Catppuccin theme for Wofi
home-manager.users.${user.username} = {
xdg.configFile."wofi/config".text = ''
dark
width=500
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
'';
xdg.configFile."wofi/style.css".source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "wofi";
rev = "main";
sha256 = "sha256-0000000000000000000000000000000000000000000000000000"; # Update with the correct hash
file = "mocha.css"; # or latte/frappe/macchiato
};
};
# .. put any code here
}
@@ -1,7 +1,7 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
imports = [
./wofi.nix
# No subfolders to import
];
# .. put any code here
}
@@ -1,31 +1,4 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
programs.wofi = {
enable = true;
wrapGtkApps = true; # Required for GTK theming
extraPackages = with pkgs; [ wofi ];
};
# Catppuccin theme for Wofi
home-manager.users.${user.username} = {
xdg.configFile."wofi/config".text = ''
dark
width=500
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
'';
xdg.configFile."wofi/style.css".source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "wofi";
rev = "main";
sha256 = "sha256-0000000000000000000000000000000000000000000000000000"; # Update with the correct hash
file = "mocha.css"; # or latte/frappe/macchiato
};
};
# .. put any code here
}