#Useful snippets

1 messages Β· Page 1 of 1 (latest)

soft pulsar
#

List of actually useful snippets since they often get buried by random shite

(to be added)

soft pulsar
#

Hide "AKA" section in user profile #🎨-css-snippets message
Alternate version, blur or hover versions: #🎨-css-snippets message

Hide avatar decorations (you are a fun killer)
#🎨-css-snippets message

Acrylic popouts/menus #🎨-css-snippets message

Change Discord's Accent Color
https://gist.github.com/llsc12/16c7067f97867fafde2d2c6c0dd5cd1d/raw/discord-accent-color.css

Add this to your Quick CSS and edit the two lines to change the accent color.

Desaturate offline users in DMs #🎨-css-snippets message

Hide entries in Settings context that don't have extra options #🎨-css-snippets message>

Add icons to context menu items:
Fav/Unfav emote: #🎨-css-snippets message
Remove all reactions: #🎨-css-snippets message

Delet super reactions (once again, u r fun killer jasonzoom ) #🎨-css-snippets message

Make channel indicators look like dots #🎨-css-snippets message

Change your name color in every server #🎨-css-snippets message

Bigger reactions
#🎨-css-snippets message

Remove notes from user popout

/* Hide note section */
[class*=section-]:has([class*=note-]) {
    display: none;
}

/* Pad bottom */
[class*=section-]:has([class*=roles-]) {
    padding-bottom: 16px;
}

Most of these should still work, if not then shiddohwell

Discord

Discord is the easiest way to communicate over voice, video, and text. Chat, hang out, and stay close with your friends and communities.

soft pulsar
pine goblet
sharp cloud
#

anyway to get custom folder images?

soft pulsar
#

i forgor this thread existed

soft pulsar
#

lol

lapis dune
#

Is the remove note snippet broken?
I'm not seeing a difference

#

Here's an improved one

/* Large Popout */
div.userInfoSection_e816c1 > h1:nth-last-child(2) {
    display: none;
}
.note__7a4f4 {
    display: none;
}
div.userInfoSection_e816c1 > div:nth-last-child(3) > div.userInfoText_b87307 {
    margin-bottom: 0px;
}

/* DM Divider */
div.userPanelOverlayBackground_a2b6ae.overlayBackground__345c9 > .divider_d6f39c:nth-last-child(2) {
    display: none;
}

/* Small and DM */
.section__62b44:has(.note_ba0c31) {
    display: none;
}```
#

or if you want to customize which ones are hidden:

/* Large Popout */
/* div.userInfoSection_e816c1 > h1:nth-last-child(2) {
    display: none;
}
.note__7a4f4 {
    display: none;
}
div.userInfoSection_e816c1 > div:nth-last-child(3) > div.userInfoText_b87307 {
    margin-bottom: 0px;
} */

/* In DMS */
/* div.userPanelOverlayBackground_a2b6ae.overlayBackground__345c9 > .divider_d6f39c:nth-last-child(2) {
    display: none;
} */

/* Delete if using the both small and dm */
/* div.userPanelOverlayBackground_a2b6ae.overlayBackground__345c9 > div:has(.note_ba0c31) {
    display: none;
} */

/* Works for both small and dm (not the divider) */
/* .section__62b44:has(.note_ba0c31) {
    display: none;
} */

/* Small Popout */
/* Delete if using the both small and dm */
/* .scroller_f9a667.thin__62e51.scrollerBase__65223 > .section__62b44:has(.note_ba0c31) {
    display: none;
} */```
soft pulsar
#

idk i lost motivation constantly editing this lol