fmt
This commit is contained in:
parent
3554ffe466
commit
fe6b13fbf8
2 changed files with 98 additions and 94 deletions
|
@ -1,12 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
xdg.desktopEntries."rofi".name = "Rofi";
|
|
||||||
xdg.desktopEntries."rofi".exec = "rofi -show";
|
|
||||||
xdg.desktopEntries."rofi".noDisplay = true;
|
|
||||||
|
|
||||||
xdg.desktopEntries."rofi-theme-selector".name = "Rofi Theme Selector";
|
|
||||||
xdg.desktopEntries."rofi-theme-selector".exec = "rofi-theme-selector";
|
|
||||||
xdg.desktopEntries."rofi-theme-selector".noDisplay = true;
|
|
||||||
|
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
cycle = false;
|
cycle = false;
|
||||||
|
@ -17,4 +9,17 @@
|
||||||
};
|
};
|
||||||
theme = ./theme.rasi;
|
theme = ./theme.rasi;
|
||||||
};
|
};
|
||||||
|
xdg.desktopEntries = {
|
||||||
|
"rofi" = {
|
||||||
|
name = "Rofi";
|
||||||
|
exec = "rofi -show";
|
||||||
|
noDisplay = true;
|
||||||
|
};
|
||||||
|
"rofi-theme-selector" = {
|
||||||
|
name = "Rofi Theme Selector";
|
||||||
|
exec = "rofi-theme-selector";
|
||||||
|
noDisplay = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
{ config
|
{ config, pkgs, ... }: {
|
||||||
, pkgs
|
|
||||||
, ...
|
|
||||||
}: {
|
|
||||||
programs.waybar.enable = true;
|
|
||||||
programs.waybar.systemd.enable = true;
|
|
||||||
programs.waybar.style = ./style.css;
|
|
||||||
xdg.configFile."waybar/colors.css".source = ./colors.css;
|
xdg.configFile."waybar/colors.css".source = ./colors.css;
|
||||||
programs.waybar.settings = {
|
programs.waybar = {
|
||||||
|
enable = true;
|
||||||
|
systemd.enable = true;
|
||||||
|
style = ./style.css;
|
||||||
|
settings = {
|
||||||
mainBar = {
|
mainBar = {
|
||||||
layer = "top";
|
layer = "top";
|
||||||
position = "top";
|
position = "top";
|
||||||
|
@ -91,4 +89,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue