diff --git a/flake.lock b/flake.lock index 15a394d..4702b8c 100644 --- a/flake.lock +++ b/flake.lock @@ -923,22 +923,6 @@ "type": "github" } }, - "rofi-themes": { - "flake": false, - "locked": { - "lastModified": 1732392475, - "narHash": "sha256-TIYEpag5B2HloMnkOvZG283T8cBur5PRx0OdPi9h+Dw=", - "ref": "refs/heads/main", - "rev": "d44933c182b168c4959c3e4e41d28ecd37e36e05", - "revCount": 114, - "type": "git", - "url": "https://codewith.babesonthe.net/punkfairie/rofi-themes" - }, - "original": { - "type": "git", - "url": "https://codewith.babesonthe.net/punkfairie/rofi-themes" - } - }, "root": { "inputs": { "darwin": "darwin", @@ -949,7 +933,6 @@ "nixgl": "nixgl", "nixpkgs": "nixpkgs_4", "nur": "nur", - "rofi-themes": "rofi-themes", "snowfall-lib": "snowfall-lib", "stylix": "stylix", "unstable": "unstable", diff --git a/flake.nix b/flake.nix index a31d4db..723b3f4 100644 --- a/flake.nix +++ b/flake.nix @@ -82,10 +82,5 @@ }; marleyvim.url = "git+https://codewith.babesonthe.net/punkfairie/marleyvim"; - - rofi-themes = { - url = "git+https://codewith.babesonthe.net/punkfairie/rofi-themes"; - flake = false; - }; }; } diff --git a/modules/home/options/apps/default.nix b/modules/home/options/apps/default.nix index 504d2d7..dc56b81 100644 --- a/modules/home/options/apps/default.nix +++ b/modules/home/options/apps/default.nix @@ -17,13 +17,7 @@ in { }; clipboard = let - isXorg = config.marleyos.xorg.xsession.enable; - defaultXorg = { - package = pkgs.clipboard-jh; - copy-command = "${lib.getExe pkgs.clipboard-jh} copy"; - paste-command = "${lib.getExe pkgs.clipboard-jh} paste"; - }; - defaultWayland = { + default = { package = pkgs.wl-clipboard; copy-command = lib.getExe' pkgs.wl-clipboard "wl-copy"; paste-command = lib.getExe' pkgs.wl-clipboard "wl-paste"; @@ -34,37 +28,25 @@ in { options = { package = lib.mkOption { type = lib.types.package; - default = - if isXorg - then defaultXorg.package - else defaultWayland.package; + default = default.package; description = "The clipboard manager to use."; }; copy-command = lib.mkOption { type = lib.types.str; - default = - if isXorg - then defaultXorg.copy-command - else defaultWayland.copy-command; + default = default.copy-command; description = "The command, including binary, to use for copying."; }; paste-command = lib.mkOption { type = lib.types.str; - default = - if isXorg - then defaultXorg.paste-command - else defaultWayland.paste-command; + default = default.paste-command; description = "The command, including binary, to use for pasting."; }; }; }; - default = - if isXorg - then defaultXorg - else defaultWayland; + default = default; }; terminal = lib.mkOption { diff --git a/modules/home/programs/gui/default.nix b/modules/home/programs/gui/default.nix index 292f93f..c29de9d 100644 --- a/modules/home/programs/gui/default.nix +++ b/modules/home/programs/gui/default.nix @@ -16,7 +16,6 @@ in { pidgin = enabled; thunderbird = enabled; phpstorm = enabled; - rofi = enabled; vesktop = enabled; wezterm = enabled; zathura = enabled; diff --git a/modules/home/programs/wayland/wofi/default.nix b/modules/home/programs/wayland/wofi/default.nix deleted file mode 100644 index a1585fc..0000000 --- a/modules/home/programs/wayland/wofi/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - lib, - config, - ... -}: let - cfg = config.marleyos.programs.wofi; -in { - options.marleyos.programs.wofi.enable = lib.mkEnableOption "wofi"; - - config = lib.mkIf cfg.enable { - marleyos.apps.launcher = { - inherit (config.programs.wofi) package; - command = "--show drun"; - }; - - programs.wofi = { - enable = true; - }; - }; -} diff --git a/modules/home/programs/xorg/rofi/default.nix b/modules/home/programs/xorg/rofi/default.nix deleted file mode 100644 index 816ed0f..0000000 --- a/modules/home/programs/xorg/rofi/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - lib, - config, - pkgs, - inputs, - ... -}: let - cfg = config.marleyos.programs.rofi; - hasXorg = config.xsession.enable; -in { - options.marleyos.programs.rofi.enable = lib.mkEnableOption "rofi"; - - config = lib.mkIf (cfg.enable && hasXorg) { - home.packages = with pkgs; [ - rofi - ]; - - marleyos.apps.launcher = { - package = pkgs.rofi; - command = "--show drun"; - }; - - xdg.configFile."rofi".source = "${inputs.rofi-themes}/files"; - }; -} diff --git a/modules/home/services/clipboard/default.nix b/modules/home/services/clipboard/default.nix deleted file mode 100644 index b456701..0000000 --- a/modules/home/services/clipboard/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - lib, - config, - pkgs, - ... -}: let - cfg = config.marleyos.services.clipboard; -in { - options.marleyos.services.clipboard.enable = lib.mkEnableOption "clipboard"; - - config = lib.mkIf cfg.enable { - home.packages = with pkgs; [ - clipboard-jh - ]; - - home.sessionVariables = { - CLIPBOARD_THEME = "ansi"; - }; - }; -} diff --git a/modules/home/services/dunst/default.nix b/modules/home/services/dunst/default.nix deleted file mode 100644 index 4d51271..0000000 --- a/modules/home/services/dunst/default.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ - lib, - config, - ... -}: let - cfg = config.marleyos.services.dunst; -in { - options.marleyos.services.dunst.enable = lib.mkEnableOption "dunst"; - - config = lib.mkIf cfg.enable { - services.dunst = { - enable = true; - - iconTheme = with config.stylix.iconTheme; { - name = - if config.lib.stylix.colors.variant == "dark" - then dark - else light; - inherit package; - }; - - settings = { - global = with config.stylix.fonts; { - monitor = 0; - sort = "yes"; - idle_threshold = 120; - font = "${monospace.name} ${toString sizes.popup}"; - markup = "full"; - show_age_threshold = 60; - word_wrap = "yes"; - ignore_newline = "no"; - stack_duplicates = true; - hide_duplicate_count = false; - show_indicators = "yes"; - sticky_history = "yes"; - history_length = 20; - browser = "${lib.getExe config.marleyos.apps.browser} --new-tab"; - always_run_script = true; - title = "Dunst"; - class = "Dunst"; - mouse_left_click = "do_action"; - mouse_middle_click = "close_current"; - mouse_right_click = "close_all"; - }; - - signed_on = { - appname = "Pidgin"; - summary = "*signed on*"; - urgency = "low"; - }; - - signed_off = { - appname = "Pidgin"; - summary = "*signed off*"; - urgency = "low"; - }; - - says = { - appname = "Pidgin"; - summary = "*says*"; - urgency = "critical"; - }; - }; - }; - }; -} diff --git a/modules/home/services/picom/default.nix b/modules/home/services/picom/default.nix deleted file mode 100644 index 65c58f9..0000000 --- a/modules/home/services/picom/default.nix +++ /dev/null @@ -1,92 +0,0 @@ -{ - lib, - config, - pkgs, - ... -}: let - cfg = config.marleyos.services.picom; - hasXorg = config.xsession.enable; -in { - options.marleyos.services.picom.enable = lib.mkEnableOption "picom"; - - config = lib.mkIf (cfg.enable && hasXorg) { - services.picom = { - enable = true; - package = lib.mkIf config.marleyos.nixGL.enable (config.lib.nixGL.wrap pkgs.picom); - }; - - # The module config options are a nightmare. - xdg.configFile."picom/picom.conf".text = - # conf - '' - # Shadows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - shadow = true; - shadow-radius = 20; - shadow-opacity = .30; - shadow-offset-x = -7; - shadow-offset-y = 7; - shadow-exclude = [ - "name = 'Notification'", - "class_g = 'Conky'", - "class_g ?= 'Notify-osd'", - "class_g = 'Cairo-clock'" - ]; - - # Fading - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - fading = true; - fade-in-step = 0.03; - fade-out-step = 0.03; - - # Transparency / Opacity - - - - - - - - - - - - - - - - - - - - - - - - inactive-opacity = 0.9; - active-opacity = 0.9; - frame-opacity = 0.7; - inactive-opacity-override = false; - focus-exclude = [ "class_g = 'Cairo-clock'" ]; - opacity-rule = [ - "60:class_g = 'dolphin'", - "50:class_g = 'cava'" - ]; - - # Corners - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - corner-radius = 20; - rounded-corners-exclude = [ - "window_type = 'dock'", - "window_type = 'desktop'", - "class_g = 'Dunst'" - ]; - - # Background Blurring - - - - - - - - - - - - - - - - - - - - - - - - - - blur-method = "dual_kawase"; - blur-size = 12; - blur-strength = 10; - blur-background = false; - blur-kern = "3x3box"; - blur-background-exclude = [ - "window_type = 'desktop'", - "name = '${lib.getName config.marleyos.apps.browser}'", - "class_g = 'slop'" - ]; - - # General - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - backend = "glx"; - dithered-present = false; - vsync = true; - mark-wmwin-focused = true; - detect-rounded-corners = true; - detect-client-opacity = true; - detect-transient = true; - use-damage = false; - log-level = "warn"; - - wintypes: - { - tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; - dock = { shadow = false; clip-shadow-above = true; } - dnd = { shadow = false; } - popup_menu = { opacity = 0.8; } - dropdown_menu = { opacity = 0.8; } - }; - ''; - }; -} diff --git a/modules/home/services/polybar/default.nix b/modules/home/services/polybar/default.nix deleted file mode 100644 index 77a19c8..0000000 --- a/modules/home/services/polybar/default.nix +++ /dev/null @@ -1,430 +0,0 @@ -{ - lib, - config, - pkgs, - ... -}: let - cfg = config.marleyos.services.polybar; - hasXorg = config.xsession.enable; - xrandr = lib.getExe pkgs.xorg.xrandr; - grep = lib.getExe pkgs.gnugrep; - cut = "${pkgs.coreutils}/bin/cut"; -in { - options.marleyos.services.polybar.enable = lib.mkEnableOption "polybar"; - - config = lib.mkIf (cfg.enable && hasXorg) { - services.polybar = { - enable = true; - package = lib.mkIf config.marleyos.nixGL.enable (config.lib.nixGL.wrap pkgs.polybar); - - script = - # bash - '' - for m in $(${xrandr} --query | ${grep} " connected" | ${cut} -d" " -f1); do - bar="main" - - if [[ "$m" == "DP-0" ]]; then - bar="tray" - fi - - MONITOR="$m" polybar -q "$bar" & - done - ''; - - # colorblock theme from - # https://github.com/adi1090x/polybar-themes - settings = let - color = rec { - background = "#26232f"; - foreground = background; - foreground-alt = "#c8c8cb"; - alpha = "#00000000"; - shade1 = "#d6adb5"; - shade2 = "#d7bdc3"; - dark = "#0a0a0a"; - }; - - fmt = { - prefix.font = 2; - padding = 2; - }; - pref = { - font = 2; - padding = 2; - }; - - hasRofi = config.marleyos.programs.rofi.enable; - cfgHome = config.xdg.configHome; - in { - # Global Settings - - - - - - - - - - - - - - - - - - - - - - - - - - - "settings" = { - screenchange.reload = true; - compositing = { - background = "source"; - foreground = "over"; - overline = "over"; - underline = "over"; - border = "over"; - }; - pseudo.transparency = false; - }; - "global/wm" = { - margin.bottom = 0; - }; - - # Bars - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "bar/main" = { - monitor.text = "\${env:MONITOR:}"; - monitor.strict = false; - override.redirect = true; - bottom = false; - fixed.center = true; - width = "99%"; - height = 40; - offset.x = "0.5%"; - offset.y = "1%"; - background = color.alpha; - inherit (color) foreground; - radius.top = 0.0; - radius.bottom = 0.0; - underline.size = 2; - underline.color = color.foreground; - border.size = 0; - border.color = color.background; - padding = 0; - module.margin.left = 0; - module.margin.right = 0; - font = let - mkFt = s: "Maple Mono NF:pixelsize=${toString s};4"; - in [ - (mkFt 10) - (mkFt 15) - ]; - modules.left = "launcher sep workspaces sep title sep mpd"; - modules.right = "filesystem sep cpu memory pulseaudio network date sep sysmenu"; - dim.value = 1.0; - wm.restack = "i3"; - enable.ipc = true; - scroll.up = "i3-msg workspace next_on_output"; - scroll.down = "i3-msg workspace prev_on_output"; - }; - - "bar/tray" = { - "inherit" = "bar/main"; - modules.right = "tray sep filesystem sep cpu memory pulseaudio network date sep sysmenu"; - }; - - # Modules - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "module/sep" = { - type = "custom/text"; - format = " "; - content.background = color.alpha; - content-foreground = color.alpha; - }; - - "module/launcher" = { - type = "custom/text"; - content = { - text = ""; - inherit (color) background; - foreground = color.shade2; - padding = 2; - }; - click.left = lib.mkIf hasRofi "${cfgHome}/rofi/launchers/type-1/launcher.sh &"; - click.right = lib.mkIf hasRofi "${cfgHome}/rofi/applets/bin/screenshot.sh &"; - }; - - "module/workspaces" = { - type = "internal/xworkspaces"; - pin.workspaces = true; - enable.click = true; - enable.scroll = true; - icon.text = [ - "1;1" - "2;2" - "3;3" - "4;4" - "5;5" - "6;6" - "7;7" - "8;8" - "9;9" - "10;10" - ]; - icon.default = 0; - format = { - text = ""; - inherit (color) background; - inherit (color) foreground; - }; - label = { - monitor = "%name%"; - active = { - text = "%icon%"; - background = color.shade2; - foreground = color.dark; - padding = 2; - }; - occupied = { - text = "%icon%"; - inherit (color) background; - foreground = color.shade2; - padding = 2; - }; - urgent = { - text = "%icon%"; - inherit (color) background; - foreground = "#cc6666"; - padding = 2; - }; - empty = { - text = "%icon%"; - inherit (color) background; - foreground = color.foreground-alt; - padding = 2; - }; - }; - }; - - "module/title" = { - type = "internal/xwindow"; - format.text = "