about summary refs log tree commit diff
path: root/home/wm/wofi
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home/wm/wofi/default.nix1
-rw-r--r--home/wm/wofi/style.css43
2 files changed, 0 insertions, 44 deletions
diff --git a/home/wm/wofi/default.nix b/home/wm/wofi/default.nix
index f1e1663..ad3c759 100644
--- a/home/wm/wofi/default.nix
+++ b/home/wm/wofi/default.nix
@@ -4,6 +4,5 @@ in {
   config = lib.mkIf isEnabled {
     home.packages = with pkgs; [ wofi ];
     xdg.configFile."wofi/config".source = ./config;
-    xdg.configFile."wofi/style.css".source = ./style.css;
   };
 }
diff --git a/home/wm/wofi/style.css b/home/wm/wofi/style.css
deleted file mode 100644
index bf6f2aa..0000000
--- a/home/wm/wofi/style.css
+++ /dev/null
@@ -1,43 +0,0 @@
-*{
-  font-family: monospace;
-}
-
-window {
-  color: #5E81AC;
-  background-color: rgba(27, 27, 28, 0.92);
-  border: 2px solid #75d5ff;
-}
-
-#input {
-  margin: 10px 0px;
-  border-radius: 0px;
-  border: none;
-  background: transparent;
-  color: white;
-}
-
-#inner-box {
-  background-color: transparent;
-}
-
-#outer-box {
-  margin: 0px;
-  padding:5px;
-  background-color: transparent;
-}
-
-#text {
-  padding: 5px;
-  color: white;
-}
-
-#entry:selected {
-  color: #75d5ff;
-  background-color: transparent;
-  border: 0px;
-}
-
-#text:selected {
-  color: #75d5ff;
-  background-color: transparent;
-}