Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/caelestia/data/templates/cava.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[general]
# Number of bars (20-200) - fewer bars = better performance
bars = 64
#bars = 64
# Framerate (1-144) - higher = smoother but more CPU intensive
framerate = 60

Expand Down
22 changes: 10 additions & 12 deletions src/caelestia/data/templates/discord.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@
@import url("https://refact0r.github.io/midnight-discord/build/midnight.css");

body {
/* font options */
--font: "figtree"; /* change to '' for default discord font */
--code-font: "JetBrainsMono NF"; /* change to '' for default discord font */
font-weight: 400; /* normal text font weight. DOES NOT AFFECT BOLD TEXT */
/* font, change to '' for default discord font */
--font: "figtree";

/* sizes */
--gap: 12px; /* spacing between panels */
Expand All @@ -29,14 +27,13 @@ body {
--animations: on; /* turn off to disable all midnight animations/transitions */
--list-item-transition: 0.2s ease; /* transition for list items */
--dms-icon-svg-transition: 0.4s ease; /* transition for the dms icon */
--border-hover-transition: 0.2s ease; /* transition for borders when hovered */

/* top bar options */
--top-bar-height: var(
--gap
); /* height of the titlebar/top bar (discord default is 36px, 24px recommended if moving/hiding top bar buttons) */
--top-bar-button-position: titlebar; /* off: default position, hide: hide inbox/support buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to titlebar (will hide title) */
--top-bar-title-position: off; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */
--top-bar-button-position: hide; /* off: default position, hide: hide inbox/support buttons completely, serverlist: move inbox button to server list, titlebar: move inbox button to titlebar (will hide title) */
--top-bar-title-position: hide; /* off: default centered position, hide: hide title completely, left: left align title (like old discord) */
--subtle-top-bar-title: off; /* off: default, on: hide the icon and use subtle text color (like old discord) */

/* window controls */
Expand All @@ -45,9 +42,9 @@ body {

/* dms button icon options */
--custom-dms-icon: custom; /* off: use default discord icon, hide: remove icon entirely, custom: use custom icon */
--dms-icon-svg-url: url("https://refact0r.github.io/midnight-discord/assets/Font_Awesome_5_solid_moon.svg"); /* icon svg url. MUST BE A SVG. */
--dms-icon-svg-url: url("https://upload.wikimedia.org/wikipedia/commons/c/c4/Font_Awesome_5_solid_moon.svg"); /* icon svg url. MUST BE A SVG. */
--dms-icon-svg-size: 90%; /* size of the svg (css mask-size) */
--dms-icon-color-before: var(--icon-subtle); /* normal icon color */
--dms-icon-color-before: var(--icon-secondary); /* normal icon color */
--dms-icon-color-after: var(--white); /* icon color when button is hovered/selected */

/* dms button background options */
Expand All @@ -74,11 +71,12 @@ body {
--bg-floating: #{c.$surface}; /* you can set this to a more opaque color if floating panels look too transparent */

/* chatbar options */
--custom-chatbar: off; /* off: default chatbar, separated: chatbar separated from chat */
--chatbar-height: 47px; /* height of the chatbar (56px by default, 47px to align with user panel, 56px recommended for separated) */
--custom-chatbar: aligned; /* off: default chatbar, aligned: chatbar aligned with the user panel, separated: chatbar separated from chat */
--chatbar-height: 47px; /* height of the chatbar (52px by default, 47px recommended for aligned, 56px recommended for separated) */
--chatbar-padding: 8px; /* padding of the chatbar. only applies in aligned mode. */

/* other options */
--small-user-panel: off; /* off: default user panel, on: smaller user panel like in old discord */
--small-user-panel: off; /* turn on to make the user panel smaller like in old discord */
}

/* color options */
Expand Down
4 changes: 0 additions & 4 deletions src/caelestia/data/templates/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,3 @@
@define-color sidebar_fg_color @window_fg_color;
@define-color sidebar_border_color @window_bg_color;
@define-color sidebar_backdrop_color @window_bg_color;
@define-color theme_selected_bg_color alpha(@accent_color, 0.15);
@define-color theme_selected_fg_color @primary;

@import "thunar.css";
17 changes: 17 additions & 0 deletions src/caelestia/data/templates/nvim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
return {
background = "{{ $surface }}",
foreground = "{{ $onSurface }}",
cursor = "{{ $primary }}",
selection = "{{ $surfaceContainer }}",
line_nr = "{{ $outline }}",
comment = "{{ $outlineVariant }}", -- Make sure this exists!

-- Syntax colors
keyword = "{{ $primary }}",
func = "{{ $blue }}",
string = "{{ $green }}",
type = "{{ $mauve }}",
const = "{{ $peach }}",
error = "{{ $red }}",
warn = "{{ $yellow }}"
}
Loading