Merged sketchybar config into declaritive Nix Repo
This commit is contained in:
@@ -1,32 +1,24 @@
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
inputs.catppuccin.homeModules.catppuccin
|
||||
./hyprland
|
||||
./rofi
|
||||
./waybar
|
||||
./gtk.nix
|
||||
./qt.nix
|
||||
./sketchybar.nix
|
||||
];
|
||||
{ pkgs, inputs, lib, system, ... }:
|
||||
let isDarwin = builtins.match ".*-darwin" system != null;
|
||||
in {
|
||||
imports = [ inputs.catppuccin.homeModules.catppuccin ]
|
||||
++ lib.optionals (!isDarwin) [
|
||||
./hyprland
|
||||
./rofi
|
||||
./waybar
|
||||
./gtk.nix
|
||||
./qt.nix
|
||||
] ++ lib.optionals isDarwin [ ./sketchybar.nix ];
|
||||
|
||||
_module.args.compositor = if pkgs.stdenv.isDarwin then "quartz" else "hyprland";
|
||||
_module.args.compositor = if isDarwin then "quartz" else "hyprland";
|
||||
|
||||
home = lib.mkIf (!pkgs.stdenv.isDarwin) {
|
||||
packages = with pkgs; [
|
||||
waypaper
|
||||
awww
|
||||
];
|
||||
home = lib.mkIf (!isDarwin) {
|
||||
packages = with pkgs; [ waypaper awww ];
|
||||
file.".config/waypaper/config.ini".source = ./waypaper.ini;
|
||||
};
|
||||
|
||||
# TODO: Qutebrowser install
|
||||
programs = lib.mkIf (!pkgs.stdenv.isDarwin) {
|
||||
programs = lib.mkIf (!isDarwin) {
|
||||
mangohud = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
||||
@@ -1,23 +1,17 @@
|
||||
{ inputs, pkgs, ... }:
|
||||
{ inputs, pkgs, lib, ... }:
|
||||
let
|
||||
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
||||
super = "SUPER";
|
||||
terminal = "kitty";
|
||||
fileManager = "yazi";
|
||||
theme = "-theme $HOME/.config/rofi/custom.rasi";
|
||||
menu = "rofi -show drun ${theme}";
|
||||
filebrowser = "rofi -show filebrowser ${theme}";
|
||||
power = "rofi -show p -modi p:rofi-power-menu -theme $HOME/.config/rofi/power.rasi";
|
||||
power =
|
||||
"rofi -show p -modi p:rofi-power-menu -theme $HOME/.config/rofi/power.rasi";
|
||||
apps = "rofi -show window ${theme}";
|
||||
in
|
||||
{
|
||||
in lib.mkIf (!pkgs.stdenv.isDarwin) {
|
||||
|
||||
imports = [
|
||||
./hypridle.nix
|
||||
./hyprlock.nix
|
||||
./mako.nix
|
||||
./portal.nix
|
||||
];
|
||||
imports = [ ./hypridle.nix ./hyprlock.nix ./mako.nix ./portal.nix ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
catppuccin-cursors.mochaDark
|
||||
@@ -29,12 +23,12 @@ in
|
||||
playerctl
|
||||
];
|
||||
|
||||
systemd.user.targets.hyprland-session.Unit.Wants = [
|
||||
"xdg-desktop-autostart.target"
|
||||
];
|
||||
systemd.user.targets.hyprland-session.Unit.Wants =
|
||||
[ "xdg-desktop-autostart.target" ];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
inherit package;
|
||||
package =
|
||||
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
||||
enable = true;
|
||||
|
||||
xwayland.enable = true;
|
||||
@@ -45,10 +39,12 @@ in
|
||||
enableXdgAutostart = false;
|
||||
};
|
||||
|
||||
plugins = with inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}; [
|
||||
#hyprbars
|
||||
# hyprexpo
|
||||
];
|
||||
plugins =
|
||||
with inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system};
|
||||
[
|
||||
#hyprbars
|
||||
# hyprexpo
|
||||
];
|
||||
|
||||
settings = {
|
||||
env = [
|
||||
@@ -69,10 +65,8 @@ in
|
||||
"XCURSOR_SIZE,24"
|
||||
];
|
||||
|
||||
monitor = [
|
||||
"DP-1, 1920x1080@60, 1920x0, 1"
|
||||
"HDMI-A-2, 1920x1080@60, 0x0, 1"
|
||||
];
|
||||
monitor =
|
||||
[ "DP-1, 1920x1080@60, 1920x0, 1" "HDMI-A-2, 1920x1080@60, 0x0, 1" ];
|
||||
|
||||
input = {
|
||||
kb_layout = "de";
|
||||
@@ -126,7 +120,7 @@ in
|
||||
size = 1;
|
||||
passes = 3;
|
||||
new_optimizations = 1;
|
||||
noise = 0.04;
|
||||
noise = 4.0e-2;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -195,10 +189,7 @@ in
|
||||
# "noblur, class:^(org\\.gnome\\.|io\\.github\\.|org\\.gtk\\.)"
|
||||
# ];
|
||||
|
||||
exec-once = [
|
||||
"awww-daemon & disown"
|
||||
"waybar &"
|
||||
];
|
||||
exec-once = [ "awww-daemon & disown" "waybar &" ];
|
||||
|
||||
# Keybindings
|
||||
bind = [
|
||||
@@ -270,7 +261,8 @@ in
|
||||
"${super}, mouse_up, workspace, e-1"
|
||||
|
||||
# Screenshot
|
||||
''${super}, Z, exec, grim -g "$(slurp)" $HOME/Pictures/Screenshots/$(date +'%s_grim.png')''
|
||||
''
|
||||
${super}, Z, exec, grim -g "$(slurp)" $HOME/Pictures/Screenshots/$(date +'%s_grim.png')''
|
||||
"${super}, U, exec, grim $HOME/Pictures/Screenshots/$(date +'%s_grim.png')"
|
||||
];
|
||||
|
||||
|
||||
@@ -1,31 +1,21 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
{ pkgs, lib, ... }: {
|
||||
home.packages =
|
||||
lib.mkIf (!pkgs.stdenv.isDarwin) (with pkgs; [ rofi-power-menu rofi-calc ]);
|
||||
|
||||
home.packages = with pkgs; [
|
||||
rofi-power-menu
|
||||
rofi-calc
|
||||
];
|
||||
|
||||
programs.rofi = {
|
||||
programs.rofi = lib.mkIf (!pkgs.stdenv.isDarwin) {
|
||||
enable = true;
|
||||
cycle = true;
|
||||
package = pkgs.rofi;
|
||||
font = "FiraCode Nerd Font Mono 12";
|
||||
|
||||
location = "center";
|
||||
terminal = "${pkgs.kitty}/bin/kitty";
|
||||
|
||||
};
|
||||
|
||||
home.file = {
|
||||
home.file = lib.mkIf (!pkgs.stdenv.isDarwin) {
|
||||
".config/rofi/background.png".source = ./background.png;
|
||||
".config/rofi/custom.rasi".source = ./custom.rasi;
|
||||
".config/rofi/power.jpg".source = ./power.jpg;
|
||||
".config/rofi/power.rasi".source = ./power.rasi;
|
||||
".config/rofi/smoking_girl.png".source = ./smoking_girl.png;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
programs.sketchybar = lib.mkIf pkgs.stdenv.isDarwin {
|
||||
enable = true;
|
||||
configType = "lua";
|
||||
sbarLuaPackage = pkgs.sbarlua;
|
||||
};
|
||||
}
|
||||
32
home/desktop/sketchybar/default.nix
Normal file
32
home/desktop/sketchybar/default.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ pkgs, lib, isDarwin, ... }: {
|
||||
programs.sketchybar = lib.mkIf isDarwin {
|
||||
enable = true;
|
||||
configType = "lua";
|
||||
sbarLuaPackage = pkgs.sbarlua;
|
||||
};
|
||||
|
||||
home.file = lib.mkIf isDarwin {
|
||||
".config/sketchybar/sketchybar.lua".source = ./sketchybar.lua;
|
||||
".config/sketchybar/sketchybarrc".source = ./sketchybarrc;
|
||||
".config/sketchybar/plugins/battery.sh" = {
|
||||
source = ./plugins/battery.sh;
|
||||
executable = true;
|
||||
};
|
||||
".config/sketchybar/plugins/clock.sh" = {
|
||||
source = ./plugins/clock.sh;
|
||||
executable = true;
|
||||
};
|
||||
".config/sketchybar/plugins/front_app.sh" = {
|
||||
source = ./plugins/front_app.sh;
|
||||
executable = true;
|
||||
};
|
||||
".config/sketchybar/plugins/space.sh" = {
|
||||
source = ./plugins/space.sh;
|
||||
executable = true;
|
||||
};
|
||||
".config/sketchybar/plugins/volume.sh" = {
|
||||
source = ./plugins/volume.sh;
|
||||
executable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
28
home/desktop/sketchybar/plugins/battery.sh
Executable file
28
home/desktop/sketchybar/plugins/battery.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
PERCENTAGE="$(pmset -g batt | grep -Eo "\d+%" | cut -d% -f1)"
|
||||
CHARGING="$(pmset -g batt | grep 'AC Power')"
|
||||
|
||||
if [ "$PERCENTAGE" = "" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
case "${PERCENTAGE}" in
|
||||
9[0-9]|100) ICON=" "
|
||||
;;
|
||||
[6-8][0-9]) ICON=" "
|
||||
;;
|
||||
[3-5][0-9]) ICON=" "
|
||||
;;
|
||||
[1-2][0-9]) ICON=" "
|
||||
;;
|
||||
*) ICON=" "
|
||||
esac
|
||||
|
||||
if [[ "$CHARGING" != "" ]]; then
|
||||
ICON=""
|
||||
fi
|
||||
|
||||
# The item invoking this script (name $NAME) will get its icon and label
|
||||
# updated with the current battery status
|
||||
sketchybar --set "$NAME" icon="$ICON" label="${PERCENTAGE}%"
|
||||
7
home/desktop/sketchybar/plugins/clock.sh
Executable file
7
home/desktop/sketchybar/plugins/clock.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# The $NAME variable is passed from sketchybar and holds the name of
|
||||
# the item invoking this script:
|
||||
# https://felixkratz.github.io/SketchyBar/config/events#events-and-scripting
|
||||
|
||||
sketchybar --set "$NAME" label="$(date '+%a %d %b %H:%M:%S')"
|
||||
10
home/desktop/sketchybar/plugins/front_app.sh
Executable file
10
home/desktop/sketchybar/plugins/front_app.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Some events send additional information specific to the event in the $INFO
|
||||
# variable. E.g. the front_app_switched event sends the name of the newly
|
||||
# focused application in the $INFO variable:
|
||||
# https://felixkratz.github.io/SketchyBar/config/events#events-and-scripting
|
||||
|
||||
if [ "$SENDER" = "front_app_switched" ]; then
|
||||
sketchybar --set "$NAME" label="$INFO"
|
||||
fi
|
||||
7
home/desktop/sketchybar/plugins/space.sh
Executable file
7
home/desktop/sketchybar/plugins/space.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# The $SELECTED variable is available for space components and indicates if
|
||||
# the space invoking this script (with name: $NAME) is currently selected:
|
||||
# https://felixkratz.github.io/SketchyBar/config/components#space----associate-mission-control-spaces-with-an-item
|
||||
|
||||
sketchybar --set "$NAME" icon.highlight="$SELECTED"
|
||||
20
home/desktop/sketchybar/plugins/volume.sh
Executable file
20
home/desktop/sketchybar/plugins/volume.sh
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
# The volume_change event supplies a $INFO variable in which the current volume
|
||||
# percentage is passed to the script.
|
||||
|
||||
if [ "$SENDER" = "volume_change" ]; then
|
||||
VOLUME="$INFO"
|
||||
|
||||
case "$VOLUME" in
|
||||
[6-9][0-9]|100) ICON=""
|
||||
;;
|
||||
[3-5][0-9]) ICON=""
|
||||
;;
|
||||
[1-9]|[1-2][0-9]) ICON=""
|
||||
;;
|
||||
*) ICON=""
|
||||
esac
|
||||
|
||||
sketchybar --set "$NAME" icon="$ICON" label="$VOLUME%"
|
||||
fi
|
||||
278
home/desktop/sketchybar/sketchybar.lua
Executable file
278
home/desktop/sketchybar/sketchybar.lua
Executable file
@@ -0,0 +1,278 @@
|
||||
-- Main configuration file: sketchybar.lua
|
||||
-- Save this in ~/.config/sketchybar/
|
||||
|
||||
-- SketchyBar Lua API
|
||||
sbar = require("sketchybar")
|
||||
|
||||
-- Colors (Catppuccin Mocha theme)
|
||||
local colors = {
|
||||
text = 0xffcdd6f4,
|
||||
bg = 0xff1e1e2e,
|
||||
accent = 0xff74c7ec,
|
||||
green = 0xffa6e3a1,
|
||||
rosewater = 0xfff5e0dc,
|
||||
flamingo = 0xfff2cdcd,
|
||||
pink = 0xfff5c2e7,
|
||||
mauve = 0xffcba6f7,
|
||||
red = 0xfff38ba8,
|
||||
maroon = 0xffeba0ac,
|
||||
peach = 0xfffab387,
|
||||
yellow = 0xfff9e2af,
|
||||
teal = 0xff94e2d5,
|
||||
sky = 0xff89dceb,
|
||||
sapphire = 0xff74c7ec,
|
||||
blue = 0xff89b4fa,
|
||||
lavender = 0xffb4befe,
|
||||
subtext1 = 0xffbac2de,
|
||||
subtext0 = 0xffa6adc8,
|
||||
overlay2 = 0xff9399b2,
|
||||
overlay1 = 0xff7f849c,
|
||||
overlay0 = 0xff6c7086,
|
||||
surface2 = 0xff585b70,
|
||||
surface1 = 0xff45475a,
|
||||
surface0 = 0xff313244,
|
||||
base = 0xff1e1e2e,
|
||||
mantle = 0xff181825,
|
||||
crust = 0xff11111b,
|
||||
}
|
||||
|
||||
-- Default styles
|
||||
sbar.default({
|
||||
icon = {
|
||||
color = colors.text,
|
||||
font = "Hack Nerd Font:Bold:14.0",
|
||||
padding_right = 4,
|
||||
},
|
||||
label = {
|
||||
color = colors.text,
|
||||
font = "Hack Nerd Font:Bold:14.0",
|
||||
},
|
||||
padding_right = 20,
|
||||
popup = {
|
||||
background = {
|
||||
border_width = 2,
|
||||
corner_radius = 9,
|
||||
border_color = colors.accent,
|
||||
color = colors.bg,
|
||||
padding_right = 12,
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
-- Bar configuration
|
||||
sbar.bar({
|
||||
height = 32,
|
||||
position = "top",
|
||||
y_offset = 6,
|
||||
padding_left = 12,
|
||||
padding_right = 12,
|
||||
margin = 12,
|
||||
color = colors.bg,
|
||||
border_color = colors.accent,
|
||||
border_width = 2,
|
||||
corner_radius = 60,
|
||||
})
|
||||
|
||||
-- Apple logo menu
|
||||
local apple_logo = sbar.add("item", "apple.logo", {
|
||||
icon = {
|
||||
string = " ",
|
||||
padding_left = 6,
|
||||
font = "Hack Nerd Font:Bold:20.0",
|
||||
},
|
||||
label = { drawing = false },
|
||||
padding_left = 0,
|
||||
click_script = "sketchybar -m --set $NAME popup.drawing=toggle",
|
||||
popup = {
|
||||
y_offset = 8,
|
||||
},
|
||||
})
|
||||
|
||||
sbar.add("item", "apple.about", {
|
||||
position = "popup.apple.logo",
|
||||
icon = " ",
|
||||
label = "About",
|
||||
click_script = 'osascript -e \'tell application "System Events" to tell process "Finder" to click menu item "About This Mac" of menu 1 of menu bar item "Apple" of menu bar 1\'; sketchybar -m --set apple.logo popup.drawing=off',
|
||||
padding_left = 8,
|
||||
padding_right = 8,
|
||||
})
|
||||
|
||||
sbar.add("item", "apple.preferences", {
|
||||
position = "popup.apple.logo",
|
||||
icon = " ",
|
||||
label = "Preferences",
|
||||
click_script = "open -a 'System Preferences'; sketchybar -m --set apple.logo popup.drawing=off",
|
||||
padding_left = 8,
|
||||
padding_right = 8,
|
||||
})
|
||||
|
||||
sbar.add("item", "apple.activity", {
|
||||
position = "popup.apple.logo",
|
||||
icon = " ",
|
||||
label = "Activity",
|
||||
click_script = "open -a 'Activity Monitor'; sketchybar -m --set apple.logo popup.drawing=off",
|
||||
padding_left = 8,
|
||||
padding_right = 8,
|
||||
})
|
||||
|
||||
sbar.add("item", "apple.lock", {
|
||||
position = "popup.apple.logo",
|
||||
icon = " ",
|
||||
label = "Lock Screen",
|
||||
click_script = "pmset displaysleepnow; sketchybar -m --set apple.logo popup.drawing=off",
|
||||
padding_left = 8,
|
||||
padding_right = 8,
|
||||
})
|
||||
|
||||
-- Spaces
|
||||
local space_icons = { " ", " ", " ", " ", " ", " ", "7", "8", "9", "10" }
|
||||
for i = 1, #space_icons do
|
||||
local space = sbar.add("space", "space." .. i, {
|
||||
space = i,
|
||||
icon = {
|
||||
string = space_icons[i],
|
||||
padding_left = 2,
|
||||
padding_right = 2,
|
||||
highlight_color = colors.green,
|
||||
},
|
||||
label = { drawing = false },
|
||||
padding_right = 4,
|
||||
script = "$CONFIG_DIR/plugins/space.lua",
|
||||
click_script = "yabai -m space --focus " .. i,
|
||||
})
|
||||
|
||||
space:subscribe("space_change", function(env)
|
||||
local selected = env.SELECTED == "true"
|
||||
sbar.set(env.NAME, { icon = { highlight = selected } })
|
||||
end)
|
||||
end
|
||||
|
||||
-- Front app
|
||||
local front_app = sbar.add("item", "front_app", {
|
||||
position = "center",
|
||||
icon = " ",
|
||||
script = "$CONFIG_DIR/plugins/front_app.lua",
|
||||
})
|
||||
|
||||
front_app:subscribe("front_app_switched", function(env)
|
||||
sbar.set(env.NAME, { label = env.INFO })
|
||||
end)
|
||||
|
||||
-- Clock
|
||||
local clock = sbar.add("item", "clock", {
|
||||
position = "right",
|
||||
icon = " ",
|
||||
padding_right = 0,
|
||||
update_freq = 1,
|
||||
script = "$CONFIG_DIR/plugins/clock.lua",
|
||||
})
|
||||
|
||||
clock:subscribe("routine", function()
|
||||
sbar.exec("date '+%a %d %b %H:%M:%S'", function(date)
|
||||
sbar.set("clock", { label = date })
|
||||
end)
|
||||
end)
|
||||
|
||||
-- Battery
|
||||
local battery = sbar.add("item", "battery", {
|
||||
position = "right",
|
||||
update_freq = 1,
|
||||
script = "$CONFIG_DIR/plugins/battery.lua",
|
||||
})
|
||||
|
||||
battery:subscribe({ "routine", "system_woke", "power_source_change" }, function()
|
||||
sbar.exec("pmset -g batt", function(batt_info)
|
||||
local percentage = batt_info:match("(%d+)%%")
|
||||
local charging = batt_info:match("AC Power") ~= nil
|
||||
|
||||
if not percentage then
|
||||
return
|
||||
end
|
||||
|
||||
local icon = " "
|
||||
local pct = tonumber(percentage)
|
||||
|
||||
if pct >= 90 then
|
||||
icon = " "
|
||||
elseif pct >= 60 then
|
||||
icon = " "
|
||||
elseif pct >= 30 then
|
||||
icon = " "
|
||||
elseif pct >= 10 then
|
||||
icon = " "
|
||||
else
|
||||
icon = " "
|
||||
end
|
||||
|
||||
if charging then
|
||||
icon = ""
|
||||
end
|
||||
|
||||
sbar.set("battery", {
|
||||
icon = icon,
|
||||
label = percentage .. "%",
|
||||
})
|
||||
end)
|
||||
end)
|
||||
|
||||
-- Volume
|
||||
local volume = sbar.add("item", "volume", {
|
||||
position = "right",
|
||||
script = "$CONFIG_DIR/plugins/volume.lua",
|
||||
})
|
||||
|
||||
volume:subscribe("volume_change", function(env)
|
||||
local vol = tonumber(env.INFO)
|
||||
local icon = ""
|
||||
|
||||
if vol >= 60 then
|
||||
icon = ""
|
||||
elseif vol >= 30 then
|
||||
icon = ""
|
||||
elseif vol >= 1 then
|
||||
icon = ""
|
||||
end
|
||||
|
||||
sbar.set(env.NAME, {
|
||||
icon = icon,
|
||||
label = vol .. "%",
|
||||
})
|
||||
end)
|
||||
|
||||
-- WiFi
|
||||
local wifi = sbar.add("item", "wifi", {
|
||||
position = "right",
|
||||
update_freq = 10,
|
||||
})
|
||||
|
||||
wifi:subscribe("routine", function()
|
||||
-- Check if WiFi is active
|
||||
sbar.exec("ifconfig en0 | grep 'status: active'", function(status)
|
||||
local icon = " " -- Off
|
||||
|
||||
if status and status ~= "" then
|
||||
-- WiFi is active, check if connected to network
|
||||
sbar.exec("ifconfig en0 | grep 'inet '", function(inet)
|
||||
if inet and inet ~= "" then
|
||||
icon = " " -- Connected
|
||||
else
|
||||
icon = " " -- Disconnected
|
||||
end
|
||||
sbar.set("wifi", {
|
||||
icon = icon,
|
||||
label = "",
|
||||
})
|
||||
end)
|
||||
else
|
||||
-- WiFi is off
|
||||
sbar.set("wifi", {
|
||||
icon = icon,
|
||||
label = "",
|
||||
})
|
||||
end
|
||||
end)
|
||||
end)
|
||||
|
||||
-- Run the bar
|
||||
sbar.hotload(true)
|
||||
sbar.update()
|
||||
7
home/desktop/sketchybar/sketchybarrc
Executable file
7
home/desktop/sketchybar/sketchybarrc
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env lua
|
||||
|
||||
-- Load the sketchybar lua module
|
||||
package.cpath = package.cpath .. ";/Users/" .. os.getenv("USER") .. "/.local/share/sketchybar_lua/?.so"
|
||||
|
||||
-- Load your main config
|
||||
dofile(os.getenv("HOME") .. "/.config/sketchybar/sketchybar.lua")
|
||||
@@ -1,18 +1,13 @@
|
||||
{
|
||||
pkgs,
|
||||
compositor ? "hyprland",
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
programs.waybar = {
|
||||
{ pkgs, lib, compositor ? "hyprland", ... }: {
|
||||
programs.waybar = lib.mkIf (!pkgs.stdenv.isDarwin) ({
|
||||
enable = true;
|
||||
package = pkgs.waybar;
|
||||
}
|
||||
// (import ./dual.nix { inherit compositor; });
|
||||
home = {
|
||||
packages = with pkgs; [ cava ];
|
||||
file.".config/waybar" = {
|
||||
} // (import ./dual.nix { inherit compositor; }));
|
||||
|
||||
home.packages = lib.mkIf (!pkgs.stdenv.isDarwin) (with pkgs; [ cava ]);
|
||||
|
||||
home.file = lib.mkIf (!pkgs.stdenv.isDarwin) {
|
||||
".config/waybar" = {
|
||||
source = ./configs;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user