mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
meta: Remove rofi
Although rofi was cute, ironbar may suit my needs better since I don't actually need a launcher that shows all desktop files. This makes things simpler and makes the launcher (ironbar) easier to extend upon since it's written in Rust.
This commit is contained in:
parent
44b6e345d1
commit
85f741c920
@ -18,7 +18,6 @@
|
||||
./neovim.nix
|
||||
./pqiv.nix
|
||||
./qutebrowser.nix
|
||||
./rofi.nix
|
||||
./swaylock.nix
|
||||
./thunar.nix
|
||||
./udiskie.nix
|
||||
|
106
home/rofi.nix
106
home/rofi.nix
@ -1,106 +0,0 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
cycle = false;
|
||||
|
||||
extraConfig = {
|
||||
modi = "drun,filebrowser";
|
||||
font = "Noto Sans CJK JP 12";
|
||||
show-icons = true;
|
||||
bw = 0;
|
||||
display-drun = "";
|
||||
display-window = "";
|
||||
display-combi = "";
|
||||
icon-theme = "Fluent-dark";
|
||||
terminal = "kitty";
|
||||
drun-match-fields = "name";
|
||||
drun-display-format = "{name}";
|
||||
me-select-entry = "";
|
||||
me-accept-entry = "MousePrimary";
|
||||
};
|
||||
|
||||
theme = let inherit (config.lib.formats.rasi) mkLiteral; in with config.lib.stylix.colors; lib.mkForce {
|
||||
"*" = {
|
||||
font = "Noto Sans CJK JP Bold 12";
|
||||
background-color = mkLiteral "transparent";
|
||||
foreground = mkLiteral "#${base05}";
|
||||
text-color = mkLiteral "#${base05}";
|
||||
padding = mkLiteral "0px";
|
||||
margin = mkLiteral "0px";
|
||||
};
|
||||
|
||||
window = {
|
||||
fullscreen = true;
|
||||
padding = mkLiteral "1em";
|
||||
background-color = mkLiteral "#${base00}dd";
|
||||
};
|
||||
|
||||
mainbox = {
|
||||
padding = mkLiteral "8px";
|
||||
};
|
||||
|
||||
inputbar = {
|
||||
background-color = mkLiteral "#${base05}20";
|
||||
|
||||
margin = mkLiteral "0px calc( 50% - 230px )";
|
||||
padding = mkLiteral "4px 8px";
|
||||
spacing = mkLiteral "8px";
|
||||
|
||||
border = mkLiteral "1px";
|
||||
border-radius = mkLiteral "2px";
|
||||
border-color = mkLiteral "#${base05}40";
|
||||
|
||||
children = map mkLiteral [ "icon-search" "entry" ];
|
||||
};
|
||||
|
||||
prompt = {
|
||||
enabled = false;
|
||||
};
|
||||
|
||||
icon-search = {
|
||||
expand = false;
|
||||
filename = "search";
|
||||
vertical-align = mkLiteral "0.5";
|
||||
};
|
||||
|
||||
entry = {
|
||||
placeholder = "Search";
|
||||
placeholder-color = mkLiteral "#${base05}20";
|
||||
};
|
||||
|
||||
listview = {
|
||||
margin = mkLiteral "48px calc( 50% - 560px )";
|
||||
spacing = mkLiteral "48px";
|
||||
columns = 5;
|
||||
fixed-columns = true;
|
||||
};
|
||||
|
||||
"element, element-text, element-icon" = {
|
||||
cursor = mkLiteral "pointer";
|
||||
};
|
||||
|
||||
element = {
|
||||
padding = mkLiteral "8px";
|
||||
spacing = mkLiteral "4px";
|
||||
|
||||
orientation = mkLiteral "vertical";
|
||||
border-radius = mkLiteral "16px";
|
||||
};
|
||||
|
||||
"element selected" = {
|
||||
background-color = mkLiteral "#${base05}33";
|
||||
};
|
||||
|
||||
element-icon = {
|
||||
size = mkLiteral "5em";
|
||||
horizontal-align = mkLiteral "0.5";
|
||||
};
|
||||
|
||||
element-text = {
|
||||
horizontal-align = mkLiteral "0.5";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
@ -2,6 +2,5 @@
|
||||
imports = [
|
||||
./alejandra.nix
|
||||
./kitty.nix
|
||||
./rofi.nix
|
||||
];
|
||||
}
|
||||
|
@ -1,22 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
rofi-unwrapped = prev.rofi-unwrapped.overrideAttrs (oldAttrs: rec {
|
||||
version = "d06095b5ed40e5d28236b7b7b575ca867696d847";
|
||||
|
||||
src = final.fetchFromGitHub {
|
||||
owner = "lbonn";
|
||||
repo = "rofi";
|
||||
rev = version;
|
||||
fetchSubmodules = true;
|
||||
sha256 = "sha256-8IfHpaVFGeWqyw+tLjNtg+aWwAHhSA5PuXJYjpoht2E=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ pkgs.wayland-scanner ];
|
||||
buildInputs = oldAttrs.buildInputs ++ [ pkgs.wayland pkgs.wayland-protocols ];
|
||||
});
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user