This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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} |