diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-04-16 23:12:33 +0200 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-04-16 23:12:33 +0200 |
| commit | d710aebfaf15d6ea4179bf3b146b9350ab54ace1 (patch) | |
| tree | 8b1f1d9fc4443fd37889d64c8b4dbd95e1f64c21 | |
| parent | docs: remove some shit that didn't work as intended (diff) | |
| download | suckless-setup-d710aebfaf15d6ea4179bf3b146b9350ab54ace1.tar.gz | |
feat: switch from Palenight theme to Rosé Pine
Diffstat (limited to '')
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | dmenu/config.def.h | 14 | ||||
| -rw-r--r-- | dmenu/config.h | 14 | ||||
| -rw-r--r-- | dwm/config.def.h | 6 | ||||
| -rw-r--r-- | dwm/config.h | 6 | ||||
| -rw-r--r-- | screenshot.png | bin | 929518 -> 925978 bytes | |||
| -rw-r--r-- | st/config.def.h | 51 | ||||
| -rw-r--r-- | st/config.h | 51 |
8 files changed, 67 insertions, 77 deletions
@@ -2,7 +2,7 @@ My personal suckless setup. -- Palenight color scheme and JetBrainsMono Nerd Font by default (colors from [Palenight VSCode Extension](https://github.com/whizkydee/vscode-palenight-theme/)) +- Rosé Pine color scheme and JetBrainsMono Nerd Font by default (colors from [Rosé Pine for st](https://github.com/rose-pine/st)) - Custom keybindings: - Alt+Shift+D: Opens Discord - Alt+Shift+F: Opens Firefox diff --git a/dmenu/config.def.h b/dmenu/config.def.h index 761bb2d..a6a06b8 100644 --- a/dmenu/config.def.h +++ b/dmenu/config.def.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ static const unsigned int alpha = 0xbe; static int centered = 1; /* -c option; centers dmenu on screen */ static int min_width = 500; /* minimum width when centered */ @@ -11,15 +11,15 @@ static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = {"#ffffff", "#1E1E2E"}, - [SchemeSel] = {"#ffffff", "#575e6e"}, - [SchemeOut] = {"#ffffff", "#da5748"}, + [SchemeNorm] = {"#e0def4", "#191724"}, + [SchemeSel] = {"#e0def4", "#575e6e"}, + [SchemeOut] = {"#e0def4", "#dde1e7"}, }; static const unsigned int alphas[SchemeLast][2] = { - [SchemeNorm] = { OPAQUE, alpha }, - [SchemeSel] = { OPAQUE, alpha }, - [SchemeOut] = { OPAQUE, alpha }, + [SchemeNorm] = {OPAQUE, alpha}, + [SchemeSel] = {OPAQUE, alpha}, + [SchemeOut] = {OPAQUE, alpha}, }; /* -l and -g options; controls number of lines and columns in grid if > 0 */ diff --git a/dmenu/config.h b/dmenu/config.h index 761bb2d..a6a06b8 100644 --- a/dmenu/config.h +++ b/dmenu/config.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ static const unsigned int alpha = 0xbe; static int centered = 1; /* -c option; centers dmenu on screen */ static int min_width = 500; /* minimum width when centered */ @@ -11,15 +11,15 @@ static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = {"#ffffff", "#1E1E2E"}, - [SchemeSel] = {"#ffffff", "#575e6e"}, - [SchemeOut] = {"#ffffff", "#da5748"}, + [SchemeNorm] = {"#e0def4", "#191724"}, + [SchemeSel] = {"#e0def4", "#575e6e"}, + [SchemeOut] = {"#e0def4", "#dde1e7"}, }; static const unsigned int alphas[SchemeLast][2] = { - [SchemeNorm] = { OPAQUE, alpha }, - [SchemeSel] = { OPAQUE, alpha }, - [SchemeOut] = { OPAQUE, alpha }, + [SchemeNorm] = {OPAQUE, alpha}, + [SchemeSel] = {OPAQUE, alpha}, + [SchemeOut] = {OPAQUE, alpha}, }; /* -l and -g options; controls number of lines and columns in grid if > 0 */ diff --git a/dwm/config.def.h b/dwm/config.def.h index ae0d292..082c4dd 100644 --- a/dwm/config.def.h +++ b/dwm/config.def.h @@ -10,10 +10,10 @@ static const int splitstatus = 1; /* 1 for split status items */ static const char *splitdelim = ";"; /* Character used for separating status */ static const char *fonts[] = {"JetBrainsMono NF:style=Bold:size=12"}; static const char dmenufont[] = "JetBrainsMono NF:style=Bold:size=12"; -static const char col_gray3[] = "#ffffff"; -static const char col_gray1[] = "#1E1E2E"; +static const char col_gray3[] = "#e0def4"; +static const char col_gray1[] = "#191724"; static const char col_gray2[] = "#dde1e7"; -static const char col_gray4[] = "#ffffff"; +static const char col_gray4[] = "#e0def4"; static const char col_cyan[] = "#575e6e"; static const unsigned int baralpha = 190; static const unsigned int borderalpha = 190; diff --git a/dwm/config.h b/dwm/config.h index ae0d292..082c4dd 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -10,10 +10,10 @@ static const int splitstatus = 1; /* 1 for split status items */ static const char *splitdelim = ";"; /* Character used for separating status */ static const char *fonts[] = {"JetBrainsMono NF:style=Bold:size=12"}; static const char dmenufont[] = "JetBrainsMono NF:style=Bold:size=12"; -static const char col_gray3[] = "#ffffff"; -static const char col_gray1[] = "#1E1E2E"; +static const char col_gray3[] = "#e0def4"; +static const char col_gray1[] = "#191724"; static const char col_gray2[] = "#dde1e7"; -static const char col_gray4[] = "#ffffff"; +static const char col_gray4[] = "#e0def4"; static const char col_cyan[] = "#575e6e"; static const unsigned int baralpha = 190; static const unsigned int borderalpha = 190; diff --git a/screenshot.png b/screenshot.png Binary files differindex ff20adf..5a79ac5 100644 --- a/screenshot.png +++ b/screenshot.png diff --git a/st/config.def.h b/st/config.def.h index 920fe1f..438dc96 100644 --- a/st/config.def.h +++ b/st/config.def.h @@ -97,43 +97,38 @@ unsigned int tabspaces = 8; float alpha = 0.9; /* Terminal colors (16 first used in escape sequence) */ -static const char *colorname[] = { - /* 8 normal colors */ - "#676E95", - "#FF5572", - "#A9C77D", - "#FFCB6B", - "#82AAFF", - "#C792EA", - "#89DDFF", - "#FFFFFF", - - /* 8 bright colors */ - "#676E95", - "#FF5572", - "#C3E88D", - "#FFCB6B", - "#82AAFF", - "#C792EA", - "#89DDFF", - "#FFFFFF", +static const char *colorname[] = { + "#26233a", + "#eb6f92", + "#9ccfd8", + "#f6c177", + "#31748f", + "#c4a7e7", + "#ebbcba", + "#e0def4", + "#6e6a86", + "#eb6f92", + "#9ccfd8", + "#f6c177", + "#31748f", + "#c4a7e7", + "#ebbcba", + "#e0def4", [255] = 0, - /* more colors can be added after 255 to use with DefaultXX */ - [256] = "#CDD6F4", - [257] = "#1E1E2E", - [258] = "#F5E0DC", + [256] = "#191724", }; + /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 256; -unsigned int defaultbg = 257; -unsigned int defaultcs = 258; -static unsigned int defaultrcs = 258; +unsigned int defaultbg = 256; +unsigned int defaultfg = 7; +unsigned int defaultcs = 7; +unsigned int defaultrcs = 7; /* * Default shape of cursor diff --git a/st/config.h b/st/config.h index 920fe1f..438dc96 100644 --- a/st/config.h +++ b/st/config.h @@ -97,43 +97,38 @@ unsigned int tabspaces = 8; float alpha = 0.9; /* Terminal colors (16 first used in escape sequence) */ -static const char *colorname[] = { - /* 8 normal colors */ - "#676E95", - "#FF5572", - "#A9C77D", - "#FFCB6B", - "#82AAFF", - "#C792EA", - "#89DDFF", - "#FFFFFF", - - /* 8 bright colors */ - "#676E95", - "#FF5572", - "#C3E88D", - "#FFCB6B", - "#82AAFF", - "#C792EA", - "#89DDFF", - "#FFFFFF", +static const char *colorname[] = { + "#26233a", + "#eb6f92", + "#9ccfd8", + "#f6c177", + "#31748f", + "#c4a7e7", + "#ebbcba", + "#e0def4", + "#6e6a86", + "#eb6f92", + "#9ccfd8", + "#f6c177", + "#31748f", + "#c4a7e7", + "#ebbcba", + "#e0def4", [255] = 0, - /* more colors can be added after 255 to use with DefaultXX */ - [256] = "#CDD6F4", - [257] = "#1E1E2E", - [258] = "#F5E0DC", + [256] = "#191724", }; + /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 256; -unsigned int defaultbg = 257; -unsigned int defaultcs = 258; -static unsigned int defaultrcs = 258; +unsigned int defaultbg = 256; +unsigned int defaultfg = 7; +unsigned int defaultcs = 7; +unsigned int defaultrcs = 7; /* * Default shape of cursor |
