diff --git a/modules/home.nix b/modules/home.nix index 79c3553..d08319c 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -16,6 +16,8 @@ ".wp/gruvbox-dark-blue.png".source = ./raw/wp/gruvbox-dark-blue.png; ".wp/anime_blue.png".source = ./raw/wp/anime_blue.png; ".wp/fuji.png".source = ./raw/wp/fuji.png; + ".wp/orbit.png".source = ./raw/wp/orbit.png; + ".wp/hollow_knight.png".source = ./raw/wp/hollow_knight.png; }; }; } diff --git a/modules/nix/nvim/default.nix b/modules/nix/nvim/default.nix index c7f2bb2..5c296bf 100644 --- a/modules/nix/nvim/default.nix +++ b/modules/nix/nvim/default.nix @@ -55,25 +55,10 @@ in enable = true; settings = { auto_update = true; - blacklist = [ ]; - client_id = "1157438221865717891"; - debounce_timeout = 10; - editing_text = "Editing..."; - enable_line_number = false; - file_assets = null; - file_explorer_text = "Browsing..."; - git_commit_text = "Committing changes..."; global_timer = true; - line_number_text = "Line %s out of %s"; log_level = null; - logo = "auto"; - logo_tooltip = null; - main_image = "language"; - plugin_manager_text = "Managing plugins..."; - reading_text = "Reading..."; show_time = true; - terminal_text = "Using a 1337 Terminal..."; - workspace_text = "Working on %s"; + workspace_text = "WS: %s"; }; }; }; diff --git a/modules/nix/sway/alacritty.nix b/modules/nix/sway/alacritty.nix index 10f23d3..4181c25 100644 --- a/modules/nix/sway/alacritty.nix +++ b/modules/nix/sway/alacritty.nix @@ -15,6 +15,7 @@ }; }; font = { + size = 18; normal = { family = "FantasqueSansMNerdFont"; }; diff --git a/modules/nix/sway/default.nix b/modules/nix/sway/default.nix index 4f637a5..cbce76b 100644 --- a/modules/nix/sway/default.nix +++ b/modules/nix/sway/default.nix @@ -7,7 +7,7 @@ home = { file = { - ".config/rofi/rofi.rasi".source = ./raw/rofi.rasi; + ".config/rofi/config.rasi".source = ./raw/config.rasi; }; }; } diff --git a/modules/nix/sway/raw/config.rasi b/modules/nix/sway/raw/config.rasi new file mode 100644 index 0000000..06b7ce6 --- /dev/null +++ b/modules/nix/sway/raw/config.rasi @@ -0,0 +1,77 @@ +configuration { + display-drun: "Applications:"; + drun-display-format: "{icon} {name}"; + font: "JetBrainsMono Nerd Font Medium 10"; + show-icons: true; + modi: "drun"; +} + + +@theme "/dev/null" + +* { + + opacity: 0.5; + color0: #39305320; + color1: #494d6420; + color3: #d8dee9; + color4: #7b68ee; + color5: #cbe3e7; + + + background-color: transparent; + text-color: @color3; + accent-color: @color5; + + margin: 0px; + border: 0px; + padding: 0px; + spacing: 0px; +} + +window { + background-color: @color0; + border-color: @accent-color; + + width: 50%; + border: 2px; +} + +inputbar { + padding: 10px 12px; + spacing: 12px; + children: [ prompt, entry ]; +} + +prompt, entry, element-text, element-icon { + vertical-align: 0.5; +} + +prompt { + text-color: @accent-color; + enabled: true; + text-color: @color4; +} + +listview { + lines: 8; + columns: 2; + +} + +element { + padding: 8px; + spacing: 8px; +} + +element selected { + text-color: @color4; +} + +element-icon { + size: 20; +} + +element-text { + text-color: inherit; +} diff --git a/modules/nix/sway/raw/rofi.rasi b/modules/nix/sway/raw/rofi.rasi deleted file mode 100644 index 8b13789..0000000 --- a/modules/nix/sway/raw/rofi.rasi +++ /dev/null @@ -1 +0,0 @@ - diff --git a/modules/nix/sway/sway.nix b/modules/nix/sway/sway.nix index 986f6fd..0f88674 100644 --- a/modules/nix/sway/sway.nix +++ b/modules/nix/sway/sway.nix @@ -15,14 +15,14 @@ config = rec { modifier = "Mod4"; terminal = "alacritty"; - menu = "${pkgs.rofi}/bin/rofi -show drun -c ~/.config/rofi/rofi.rasi"; + menu = "${pkgs.rofi}/bin/rofi -show run -c ~/.config/rofi/config.rasi"; bars = [ { command = "wayff"; } ]; startup = [ - { command = "${pkgs.swaybg}/bin/swaybg -i $HOME/.wp/fuji.png"; } + { command = "${pkgs.swaybg}/bin/swaybg -i $HOME/.wp/orbit.png"; } ]; gaps = { outer = 5; @@ -99,7 +99,7 @@ corner_radius 12 blur_radius 7 blur_passes 4 - default_dim_inactive 0.4 + default_dim_inactive 0.1 for_window [app_id="Alacritty"] blur enable for_window [app_id="alacritty"] blur enable diff --git a/modules/raw/wp/hollow_knight.png b/modules/raw/wp/hollow_knight.png new file mode 100644 index 0000000..2ee2c56 Binary files /dev/null and b/modules/raw/wp/hollow_knight.png differ diff --git a/modules/raw/wp/orbit.png b/modules/raw/wp/orbit.png new file mode 100644 index 0000000..8530671 Binary files /dev/null and b/modules/raw/wp/orbit.png differ