move from pywal to wallust
This commit is contained in:
parent
2d65ab9d90
commit
11cb67905d
3 changed files with 29 additions and 9 deletions
|
|
@ -1,8 +0,0 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.pywal.enable = true;
|
||||
home.packages = with pkgs; [
|
||||
pywalfox # Update librewolf's colorscheme based on pywal
|
||||
];
|
||||
}
|
||||
28
programs/wal/default.nix
Normal file
28
programs/wal/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ config, pkgs, ... }:
|
||||
let rootPath = ./.; in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
wallust # A better pywal
|
||||
pywalfox # Update librewolf's colorscheme based on wal
|
||||
];
|
||||
xdg.configFile."wallust-config" = {
|
||||
target = "wallust/wallust.toml";
|
||||
text = ''
|
||||
backend = "wal"
|
||||
color_space = "lab"
|
||||
threshold = 20
|
||||
filter = "dark16"
|
||||
|
||||
# [[entry]]
|
||||
# # a relative path to a file where wallust.toml is (~/.config/wallust/)
|
||||
# template = "dunstrc"
|
||||
#
|
||||
# # absolute path to the file to write the template (after templating)
|
||||
# target = "~/.config/dunst/dunstrc"
|
||||
'';
|
||||
}
|
||||
xdg.configFile."wallust-templates" = {
|
||||
source = rootPath + "/templates";
|
||||
target = "wallust/";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue