fmt
This commit is contained in:
parent
3554ffe466
commit
fe6b13fbf8
2 changed files with 98 additions and 94 deletions
|
@ -1,12 +1,4 @@
|
|||
{ 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 = {
|
||||
enable = true;
|
||||
cycle = false;
|
||||
|
@ -17,4 +9,17 @@
|
|||
};
|
||||
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
|
||||
, pkgs
|
||||
, ...
|
||||
}: {
|
||||
programs.waybar.enable = true;
|
||||
programs.waybar.systemd.enable = true;
|
||||
programs.waybar.style = ./style.css;
|
||||
{ config, pkgs, ... }: {
|
||||
xdg.configFile."waybar/colors.css".source = ./colors.css;
|
||||
programs.waybar.settings = {
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
style = ./style.css;
|
||||
settings = {
|
||||
mainBar = {
|
||||
layer = "top";
|
||||
position = "top";
|
||||
|
@ -91,4 +89,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue