Skip to content
Merged
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
Binary file modified apps/desktop/src-tauri/assets/backgrounds/blue/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/blue/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/blue/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/blue/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/blue/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/blue/6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/dark/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/dark/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/dark/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/dark/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/dark/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/dark/6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/8.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/orange/9.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/purple/1.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/purple/2.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/purple/3.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/purple/4.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/purple/5.jpg
Binary file modified apps/desktop/src-tauri/assets/backgrounds/purple/6.jpg
12 changes: 9 additions & 3 deletions apps/desktop/src/routes/editor/ConfigSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,12 @@ const BACKGROUND_GRADIENTS = [

const WALLPAPER_NAMES = [
// macOS wallpapers
"macOS/tahoe-dusk-min",
"macOS/tahoe-dawn-min",
"macOS/tahoe-day-min",
"macOS/tahoe-night-min",
"macOS/tahoe-dark",
"macOS/tahoe-light",
"macOS/sequoia-dark",
"macOS/sequoia-light",
"macOS/sonoma-clouds",
Expand Down Expand Up @@ -2446,8 +2452,8 @@ function SourceOffsetField(props: {

return (
<Field name={props.name}>
<div class="flex flex-row items-center justify-between w-full -mt-2">
<div class="flex flex-row space-x-1 items-end">
<div class="flex flex-row justify-between items-center -mt-2 w-full">
<div class="flex flex-row items-end space-x-1">
<NumberField.Root
value={value()}
onChange={setValue}
Expand All @@ -2468,7 +2474,7 @@ function SourceOffsetField(props: {
</NumberField.Root>
<span class="text-gray-11">ms</span>
</div>
<div class="text-gray-11 flex flex-row space-x-1">
<div class="flex flex-row space-x-1 text-gray-11">
{[-100, -10, 10, 100].map((v) => (
<button
type="button"
Expand Down
Loading