This commit is contained in:
Adithya 2023-04-07 21:01:48 +05:30
parent 3554ffe466
commit fe6b13fbf8
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 98 additions and 94 deletions

View file

@ -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;
};
};
}

View file

@ -1,93 +1,92 @@
{ 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 = {
mainBar = {
layer = "top";
position = "top";
height = 28;
modules-left = [ "sway/workspaces" "wlr/workspaces" "sway/window" "hyprland/window" "sway/mode" "hyprland/submap" ];
modules-center = [ ];
modules-right = [ "tray" "idle_inhibitor" "network" "bluetooth" "pulseaudio" "backlight" "battery" "clock" ];
"sway/mode" = {
"format" = "{}";
};
"sway/window" = {
"tooltip" = false;
};
"idle_inhibitor" = {
"format" = "{icon}";
"format-icons" = {
"activated" = "";
"deactivated" = "";
programs.waybar = {
enable = true;
systemd.enable = true;
style = ./style.css;
settings = {
mainBar = {
layer = "top";
position = "top";
height = 28;
modules-left = [ "sway/workspaces" "wlr/workspaces" "sway/window" "hyprland/window" "sway/mode" "hyprland/submap" ];
modules-center = [ ];
modules-right = [ "tray" "idle_inhibitor" "network" "bluetooth" "pulseaudio" "backlight" "battery" "clock" ];
"sway/mode" = {
"format" = "{}";
};
"tooltip" = false;
};
"clock" = {
"tooltip" = false;
"interval" = 1;
"format" = "{:%I:%M}";
"format-alt" = "{:%d %B %Y, %A}";
};
"backlight" = {
"format" = "{icon}";
"format-icons" = [ "" "" "" "" ];
};
"battery" = {
"states" = {
"good" = 90;
"warning" = 20;
"critical" = 10;
"sway/window" = {
"tooltip" = false;
};
"format" = "{icon}";
"format-alt" = "{icon} {capacity}% ({time})";
"format-charging" = " {capacity}%";
"format-plugged" = " {capacity}%";
"format-icons" = [ "" "" "" "" "" "" "" "" "" "" "" ];
"tooltip" = false;
};
"network" = {
"format-wifi" = "";
"format-ethernet" = "";
"format-linked" = "";
"format-disconnected" = "";
"format-alt" = "{ifname}: {ipaddr}/{cidr}";
"tooltip" = false;
};
"pulseaudio" = {
"tooltip" = false;
"format" = "{icon} {format_source}";
"format-muted" = " {format_source}";
"format-bluetooth" = " {icon} {format_source}";
"format-bluetooth-muted" = " {format_source}";
"format-source" = "";
"format-source-muted" = "";
"format-icons" = {
"headphones" = "";
"handsfree" = "";
"headset" = "";
"phone" = "";
"portable" = "";
"car" = "";
"default" = [ "" "奔" "" ];
"idle_inhibitor" = {
"format" = "{icon}";
"format-icons" = {
"activated" = "";
"deactivated" = "";
};
"tooltip" = false;
};
"clock" = {
"tooltip" = false;
"interval" = 1;
"format" = "{:%I:%M}";
"format-alt" = "{:%d %B %Y, %A}";
};
"backlight" = {
"format" = "{icon}";
"format-icons" = [ "" "" "" "" ];
};
"battery" = {
"states" = {
"good" = 90;
"warning" = 20;
"critical" = 10;
};
"format" = "{icon}";
"format-alt" = "{icon} {capacity}% ({time})";
"format-charging" = " {capacity}%";
"format-plugged" = " {capacity}%";
"format-icons" = [ "" "" "" "" "" "" "" "" "" "" "" ];
"tooltip" = false;
};
"network" = {
"format-wifi" = "";
"format-ethernet" = "";
"format-linked" = "";
"format-disconnected" = "";
"format-alt" = "{ifname}: {ipaddr}/{cidr}";
"tooltip" = false;
};
"pulseaudio" = {
"tooltip" = false;
"format" = "{icon} {format_source}";
"format-muted" = " {format_source}";
"format-bluetooth" = " {icon} {format_source}";
"format-bluetooth-muted" = " {format_source}";
"format-source" = "";
"format-source-muted" = "";
"format-icons" = {
"headphones" = "";
"handsfree" = "";
"headset" = "";
"phone" = "";
"portable" = "";
"car" = "";
"default" = [ "" "奔" "" ];
};
"on-click" = "${pkgs.pavucontrol}/bin/pavucontrol";
};
"bluetooth" = {
"format" = "";
"format-connected" = "";
"format-disabled" = "";
"format-off" = "";
"format-connected-battery" = " {device_battery_percentage}%";
"on-click" = "${pkgs.blueman}/bin/blueman-manager";
};
"tray" = {
"spacing" = 4;
};
"on-click" = "${pkgs.pavucontrol}/bin/pavucontrol";
};
"bluetooth" = {
"format" = "";
"format-connected" = "";
"format-disabled" = "";
"format-off" = "";
"format-connected-battery" = " {device_battery_percentage}%";
"on-click" = "${pkgs.blueman}/bin/blueman-manager";
};
"tray" = {
"spacing" = 4;
};
};
};