summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-03-12 21:56:50 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-03-12 21:56:50 +0530
commit1127041cda7ff8aaadd5321a27d404a00db2088d (patch)
treeb241609ece7d9a44c20d2f6436ec494853666e2c /config
parentdcfadeeb179db143390e937d3737f8170afe4d3d (diff)
Revert "dwm"
This reverts commit 55542f1ce3f313419ebe6a7fa9a7629898e6ce2e.
Diffstat (limited to 'config')
-rw-r--r--config/dwm.nix12
-rw-r--r--config/rofi/config.rasi77
-rw-r--r--config/rofi/default.nix6
-rw-r--r--config/themes.nix1
-rw-r--r--config/way-displays/cfg.yaml28
-rw-r--r--config/way-displays/default.nix6
6 files changed, 34 insertions, 96 deletions
diff --git a/config/dwm.nix b/config/dwm.nix
deleted file mode 100644
index 89a1408..0000000
--- a/config/dwm.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ pkgs, home, fetchFromGitHub, ... }:
-
-{
- home.packages = with pkgs; [
- feh
- picom
- wmname
- xss-lock
- xsecurelock
- networkmanagerapplet
- ];
-}
diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi
deleted file mode 100644
index 0233f7b..0000000
--- a/config/rofi/config.rasi
+++ /dev/null
@@ -1,77 +0,0 @@
-configuration {
- display-drun: "?";
- drun-display-format: "{name}";
- font: "UbuntuMono Nerd Font Medium 10";
- modi: "run,drun";
-}
-
-@theme "/dev/null"
-
-* {
- bg: #131417;
- bg-alt: #1e1f26;
-
- fg: #d3d7f2;
- fg-alt: #787c99;
-
- background-color: @bg;
-
- border: 0;
- margin: 0;
- padding: 0;
- spacing: 0;
-}
-
-window {
- width: 30%;
-}
-
-element {
- padding: 8 0;
- text-color: @fg-alt;
-}
-
-element selected {
- text-color: @fg;
-}
-
-element-text {
- text-color: inherit;
- vertical-align: 0.5;
-}
-
-element-icon {
- size: 14;
- padding: 0 10 0 0;
-}
-
-entry {
- background-color: @bg-alt;
- padding: 12;
- text-color: @fg;
-}
-
-inputbar {
- children: [prompt, entry];
-}
-
-listview {
- padding: 8 12;
- background-color: @bg;
- columns: 1;
- lines: 8;
-}
-
-mainbox {
- background-color: @bg;
- children: [inputbar, listview];
-}
-
-prompt {
- background-color: @bg-alt;
- enabled: true;
- padding: 12 0 0 12;
- text-color: @fg;
-}
-
-/* vim: ft=sass */
diff --git a/config/rofi/default.nix b/config/rofi/default.nix
deleted file mode 100644
index e515249..0000000
--- a/config/rofi/default.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{ pkgs, config, ... }:
-
-{
- home.packages = [ pkgs.rofi ];
- home.file.".config/rofi/config.rasi".source = ./config.rasi;
-}
diff --git a/config/themes.nix b/config/themes.nix
index b368a9e..4bea0e9 100644
--- a/config/themes.nix
+++ b/config/themes.nix
@@ -3,7 +3,6 @@
{
home.pointerCursor = {
gtk.enable = true;
- x11.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 16;
diff --git a/config/way-displays/cfg.yaml b/config/way-displays/cfg.yaml
new file mode 100644
index 0000000..74e247b
--- /dev/null
+++ b/config/way-displays/cfg.yaml
@@ -0,0 +1,28 @@
+# Arrange displays in a ROW (default, left to right) or a COLUMN (top to bottom)
+ARRANGE: COLUMN
+
+# Align ROWs at the TOP (default), MIDDLE or BOTTOM
+# Align COLUMNs at the LEFT (default), MIDDLE or RIGHT
+ALIGN: MIDDLE
+
+# The default ORDER is simply the order in which the displays are discovered.
+# Define your own.
+ORDER:
+ - 'HDMI-A-1'
+ - 'eDP-1'
+
+SCALING: FALSE
+
+MODE:
+ - NAME_DESC: HDMI-A-1
+ MAX: TRUE
+
+ - NAME_DESC: eDP-1
+ MAX: TRUE
+
+# Laptop displays usually start with eDP e.g. eDP-1. This may be overridden if
+# your laptop is different.
+LAPTOP_DISPLAY_PREFIX: 'eDP-1'
+
+# One of: ERROR, WARNING, INFO (default), DEBUG
+LOG_THRESHOLD: INFO
diff --git a/config/way-displays/default.nix b/config/way-displays/default.nix
new file mode 100644
index 0000000..b57f601
--- /dev/null
+++ b/config/way-displays/default.nix
@@ -0,0 +1,6 @@
+{ pkgs, config, ... }:
+
+{
+ home.packages = [ pkgs.way-displays ];
+ home.file.".config/way-displays/cfg.yaml".source = ./cfg.yaml;
+}