Skip to content

Instantly share code, notes, and snippets.

View LegalizeNukes's full-sized avatar

LegalizeNukes

View GitHub Profile
@LegalizeNukes
LegalizeNukes / discord_2025_redesign_fixes.css
Last active August 2, 2025 20:58
Discord 2025 Redesign Fixes
/* Space between text box and bottom of window */
[class^="channelBottomBarArea_"] {
--custom-chat-input-margin-bottom: 8px !important;
}
/* Adjust height and alignment of profile area */
[class^="container__37e49"] {
height: 54px !important;
margin-top: -2px !important;
padding-bottom: 6px !important;
@LegalizeNukes
LegalizeNukes / folder_view_script.scpt
Created November 19, 2024 16:00
AppleScript for Finder View Options
-- Allow the user to select a folder
tell application "Finder"
set theFolder to choose folder with prompt "Select a folder:"
end tell
-- Function to get all subfolders recursively
on getAllFolders(theFolder)
set folderList to {}
tell application "Finder"
set folderList to folderList & {theFolder}