aboutsummaryrefslogtreecommitdiff
path: root/modules/home/niri/chernobyl/rofi.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-03 16:09:54 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-03 16:09:54 +0100
commit19f5b3cdca2630e343e525f26dfe36a31460e6d0 (patch)
tree259eb401968b4df0493bc540af785547e114f494 /modules/home/niri/chernobyl/rofi.nix
parent7c5bad501efeb189260e7392793cd1b68aeea7e6 (diff)
yeeted niri added i3
Diffstat (limited to 'modules/home/niri/chernobyl/rofi.nix')
-rw-r--r--modules/home/niri/chernobyl/rofi.nix100
1 files changed, 0 insertions, 100 deletions
diff --git a/modules/home/niri/chernobyl/rofi.nix b/modules/home/niri/chernobyl/rofi.nix
deleted file mode 100644
index d4ab714..0000000
--- a/modules/home/niri/chernobyl/rofi.nix
+++ /dev/null
@@ -1,100 +0,0 @@
-{ pkgs, ... }:
-
-{
- programs.rofi = {
- enable = true;
- location = "center";
- cycle = true;
- terminal = "${pkgs.kitty}/bin/kitty";
- modes = [ "drun" "ssh" "emoji" "calc" ];
- plugins = with pkgs; [ rofi-emoji rofi-calc ];
- theme = ''
- * {
- bg0: #1c182d;
- bg1: #2b2135;
- bg2: #3d3547;
- fg0: #d0b6fd;
- fg1: #b12cbf;
- border-col: #b12cbf;
- }
-
- window {
- background-color: @bg0;
- border: 3px solid @border-col;
- border-radius: 15px;
- padding: 20px;
- }
-
- mainbox {
- background-color: @bg0;
- children: [ inputbar message-box listview ];
- spacing: 15px;
- }
-
- inputbar {
- background-color: @bg1;
- border: 2px solid @border-col;
- border-radius: 10px;
- padding: 10px 15px;
- children: [ prompt entry ];
- }
-
- prompt {
- text-color: @fg1;
- margin-right: 10px;
- }
-
- entry {
- background-color: transparent;
- text-color: @fg0;
- }
-
- message-box {
- background-color: @bg1;
- border: 2px solid @border-col;
- border-radius: 10px;
- padding: 10px;
- text-color: @fg0;
- }
-
- listview {
- background-color: transparent;
- columns: @columns;
- spacing: 10px;
- }
-
- element {
- background-color: @bg1;
- border: 2px solid transparent;
- border-radius: 8px;
- padding: 10px;
- transition: all 150ms ease;
- }
-
- element:hover {
- background-color: @bg2;
- border: 2px solid @border-col;
- }
-
- element:selected {
- background-color: @fg1;
- text-color: @bg0;
- border: 2px solid @border-col;
- }
-
- element-icon {
- size: 24px;
- margin-right: 10px;
- }
-
- element-text {
- text-color: @fg0;
- vertical-align: 0.5;
- }
-
- element:selected element-text {
- text-color: @bg0;
- }
- '';
- };
-}