Add tokyo night theme
parent
73604d1745
commit
7db2df539e
|
@ -0,0 +1,2 @@
|
|||
dwm
|
||||
*.o
|
16
README.md
16
README.md
|
@ -1,19 +1,13 @@
|
|||
Patches
|
||||
--
|
||||
Dynamic Window Manager(dwm) 6.2 with 5 patches applied:
|
||||
- rounded gaps
|
||||
- dwm barpadding
|
||||
- fullscreen
|
||||
- vanitygaps
|
||||
- dylanaraps' [openbox rounded corner patch](https://github.com/dylanaraps/openbox-patched), adapted for dwm
|
||||
Dynamic Window Manager(dwm) 6.2 with patches for gaps
|
||||
|
||||
Themes
|
||||
--
|
||||
- Catppuccin frappe (you can change it to latte in config.h)
|
||||
- To change theme to catppuccin latte use
|
||||
```sh
|
||||
git apply apply_latte.diff
|
||||
```
|
||||
- Catppuccin frappe
|
||||
- Catppuccin latte
|
||||
- Tokyo night
|
||||
To change theme change include on line 4
|
||||
|
||||
Screenshot
|
||||
--
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
diff --git a/config.h b/config.h
|
||||
index e0ed975..5ea70c2 100644
|
||||
--- a/config.h
|
||||
+++ b/config.h
|
||||
@@ -16,7 +16,7 @@ static const int sidepad = 5;
|
||||
static const char *fonts[] = { "monospace:size=10", "fontawesome:size=12", "NotoColorEmoji:size=12" };
|
||||
static const char dmenufont[] = "monospace:size=10";
|
||||
|
||||
-#include "frappe.h"
|
||||
+#include "latte.h"
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_fg, col_bg, col_bg },
|
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
The MIT License (MIT)
|
||||
Copyright (c) 2018-present Enkia
|
||||
*/
|
||||
|
||||
static const char col_bg[] = "#1A1B26";
|
||||
static const char col_fg[] = "#A9B1D6";
|
||||
static const char col_actwin[] = "#9AA5CE";
|
||||
static const char col_actbg[] = "#414868";
|
Loading…
Reference in New Issue