aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-27 20:36:51 +0200
committerSoispha <soispha@vhack.eu>2023-10-27 20:36:51 +0200
commit72b0ec03c52d790343107425669e9bd3bcdc0cc4 (patch)
tree00f178ce903d8aa3ac2761734ad1c36f1be040dc
parentchore(hm/soispha/conf/taskwarrior/projects): Update (diff)
downloadnixos-config-72b0ec03c52d790343107425669e9bd3bcdc0cc4.zip
feat(hm/conf/rofi): Init
-rw-r--r--hm/soispha/conf/default.nix1
-rw-r--r--hm/soispha/conf/rofi/default.nix8
-rw-r--r--hm/soispha/conf/rofi/rounded-gray-dark.rasi18
3 files changed, 27 insertions, 0 deletions
diff --git a/hm/soispha/conf/default.nix b/hm/soispha/conf/default.nix
index e5a69702..93f1d34d 100644
--- a/hm/soispha/conf/default.nix
+++ b/hm/soispha/conf/default.nix
@@ -29,6 +29,7 @@
./nvim
./python
./rclone
+ ./rofi
./ssh
./swayidle
./swaylock
diff --git a/hm/soispha/conf/rofi/default.nix b/hm/soispha/conf/rofi/default.nix
new file mode 100644
index 00000000..2e0073af
--- /dev/null
+++ b/hm/soispha/conf/rofi/default.nix
@@ -0,0 +1,8 @@
+{pkgs, ...}: {
+ programs.rofi = {
+ enable = true;
+ package = pkgs.rofi-wayland;
+ terminal = "${pkgs.alacritty}/bin/alacritty";
+ theme = ./rounded-gray-dark.rasi;
+ };
+}
diff --git a/hm/soispha/conf/rofi/rounded-gray-dark.rasi b/hm/soispha/conf/rofi/rounded-gray-dark.rasi
new file mode 100644
index 00000000..ccea1eaf
--- /dev/null
+++ b/hm/soispha/conf/rofi/rounded-gray-dark.rasi
@@ -0,0 +1,18 @@
+/*******************************************************************************
+ * ROUNDED THEME FOR ROFI
+ * User : LR-Tech
+ * Theme Repo : https://github.com/lr-tech/rofi-themes-collection
+ *******************************************************************************/
+
+* {
+ bg0: #212121F2;
+ bg1: #2A2A2A;
+ bg2: #3D3D3D80;
+ bg3: #616161F2;
+ fg0: #E6E6E6;
+ fg1: #FFFFFF;
+ fg2: #969696;
+ fg3: #3D3D3D;
+}
+
+@import "rounded-common.rasi"