Add tokyo night theme

master
Nakidai 2024-10-31 16:38:26 +03:00
parent 73604d1745
commit 7db2df539e
Signed by: nakidai
GPG Key ID: C6BF6082F42307C0
4 changed files with 16 additions and 24 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
dwm
*.o

View File

@ -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
--

View File

@ -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 },

9
tokyonight.h Normal file
View File

@ -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";