migrate to betterdiscord
This commit is contained in:
parent
55cfdf3609
commit
15a4645341
|
@ -13,7 +13,7 @@
|
|||
# You can also split up your configuration and import pieces of it here:
|
||||
|
||||
# User programs
|
||||
./programs/discocss
|
||||
./programs/discord
|
||||
./programs/mangohud
|
||||
|
||||
# Common programs
|
||||
|
@ -63,7 +63,6 @@
|
|||
|
||||
# Install some packages
|
||||
packages = with pkgs; [
|
||||
discord
|
||||
spotify
|
||||
prismlauncher
|
||||
];
|
||||
|
|
|
@ -1,76 +0,0 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.discocss = {
|
||||
enable = true;
|
||||
discordAlias = false;
|
||||
css = ''
|
||||
:root {
|
||||
--font-primary: Fira Code;
|
||||
|
||||
/* Gruvbox Material Dark Hard */
|
||||
--fg0: #d4be98;
|
||||
--bg0: #1d2021;
|
||||
--bg1: #282828;
|
||||
|
||||
--grey0: #7c6f64;
|
||||
--grey1: #928374;
|
||||
--grey2: #a89984;
|
||||
|
||||
/* Midpoints between bg0 + bg1 */
|
||||
--bg0_33: #212323;
|
||||
--bg0_66: #242526;
|
||||
}
|
||||
|
||||
.theme-dark {
|
||||
--text-normal: var(--fg0);
|
||||
|
||||
--channels-default: var(--grey2);
|
||||
--interactive-normal: var(--grey0);
|
||||
--interactive-active: var(--grey0);
|
||||
--channel-icon: var(--grey0);
|
||||
|
||||
--scrollbar-auto-thumb: var(--grey0);
|
||||
--scrollbar-auto-track: var(--bg1);
|
||||
|
||||
--header-primary: var(--grey0);
|
||||
--header-secondary: var(--grey2);
|
||||
|
||||
--background-primary: var(--bg0);
|
||||
--background-secondary: var(--bg0_66);
|
||||
--background-secondary-alt: var(--bg0_33);
|
||||
--background-tertiary: var(--bg1);
|
||||
--background-message-hover: var(--bg1);
|
||||
--background-mentioned: var(--bg1);
|
||||
--bg-overlay-selected: var(--bg1);
|
||||
}
|
||||
|
||||
/* Message Box */
|
||||
.scrollableContainer-15eg7h {
|
||||
background-color: var(--bg1);
|
||||
}
|
||||
.slateTextArea-27tjG0 {
|
||||
color: var(--grey0);
|
||||
}
|
||||
|
||||
/* Search Box */
|
||||
.search-39IXmY {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Add a Server + Explore Public Servers */
|
||||
.circleIconButton-1VxDrg {
|
||||
color: var(--grey0);
|
||||
}
|
||||
/* Remove: Nitro, Gif, Stickers, Emoji buttons */
|
||||
.buttons-uaqb-5 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Remove: New Message Bar */
|
||||
.newMessagesBar-1hF-9G {
|
||||
display: none;
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
67
home-manager/sajenim/programs/discord/config/custom.css
Normal file
67
home-manager/sajenim/programs/discord/config/custom.css
Normal file
|
@ -0,0 +1,67 @@
|
|||
:root {
|
||||
--font-primary: Fira Code;
|
||||
|
||||
/* Gruvbox Material Dark Hard */
|
||||
--fg0: #d4be98;
|
||||
--bg0: #1d2021;
|
||||
--bg1: #282828;
|
||||
|
||||
--grey0: #7c6f64;
|
||||
--grey1: #928374;
|
||||
--grey2: #a89984;
|
||||
|
||||
/* Midpoints between bg0 + bg1 */
|
||||
--bg0_33: #212323;
|
||||
--bg0_66: #242526;
|
||||
}
|
||||
|
||||
.theme-dark {
|
||||
--text-normal: var(--fg0);
|
||||
|
||||
--channels-default: var(--grey2);
|
||||
--interactive-normal: var(--grey0);
|
||||
--interactive-active: var(--grey0);
|
||||
--channel-icon: var(--grey0);
|
||||
|
||||
--scrollbar-auto-thumb: var(--grey0);
|
||||
--scrollbar-auto-track: var(--bg1);
|
||||
|
||||
--header-primary: var(--grey0);
|
||||
--header-secondary: var(--grey2);
|
||||
|
||||
--background-primary: var(--bg0);
|
||||
--background-secondary: var(--bg0_66);
|
||||
--background-secondary-alt: var(--bg0_33);
|
||||
--background-tertiary: var(--bg1);
|
||||
--background-message-hover: var(--bg1);
|
||||
--background-mentioned: var(--bg1);
|
||||
--bg-overlay-selected: var(--bg1);
|
||||
}
|
||||
|
||||
/* Message Box */
|
||||
.scrollableContainer-15eg7h {
|
||||
background-color: var(--bg1);
|
||||
}
|
||||
.slateTextArea-27tjG0 {
|
||||
color: var(--grey0);
|
||||
}
|
||||
|
||||
/* Search Box */
|
||||
.search-39IXmY {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Add a Server + Explore Public Servers */
|
||||
.circleIconButton-1VxDrg {
|
||||
color: var(--grey0);
|
||||
}
|
||||
/* Remove: Nitro, Gif, Stickers, Emoji buttons */
|
||||
.buttons-uaqb-5 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Remove: New Message Bar */
|
||||
.newMessagesBar-1hF-9G {
|
||||
display: none;
|
||||
}
|
||||
|
19
home-manager/sajenim/programs/discord/default.nix
Normal file
19
home-manager/sajenim/programs/discord/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
discord = prev.discord.override { withOpenASAR = true; };
|
||||
})
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
betterdiscordctl
|
||||
];
|
||||
|
||||
home.file.".config/BetterDiscord/data/stable/custom.css" = {
|
||||
enable = true;
|
||||
source = ./config/custom.css;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue