commit e7235f0dab003ff42732f83c741b15341d92bbc0 Author: Cody Gibbs Date: Fri May 29 13:53:56 2026 -0400 I am batman diff --git a/Cava/config b/Cava/config new file mode 100644 index 0000000..c5d80ea --- /dev/null +++ b/Cava/config @@ -0,0 +1,270 @@ +## Configuration file for CAVA. +# Remove the ; to change parameters. + + +[general] + +# Smoothing mode. Can be 'normal', 'scientific' or 'waves'. DEPRECATED as of 0.6.0 +; mode = normal + +# Accepts only non-negative values. +; framerate = 100 + +# 'autosens' will attempt to decrease sensitivity if the bars peak. 1 = on, 0 = off +# new as of 0.6.0 autosens of low values (dynamic range) +# 'overshoot' allows bars to overshoot (in % of terminal height) without initiating autosens. DEPRECATED as of 0.6.0 +; autosens = 1 +; overshoot = 20 + +# Manual sensitivity in %. If autosens is enabled, this will only be the initial value. +# 200 means double height. Accepts only non-negative values. +; sensitivity = 5 + +# The number of bars (0-512). 0 sets it to auto (fill up console). +# Bars' width and space between bars in number of characters. +; bars = 0 +; bar_width = 2 +; bar_spacing = 1 +# bar_height is only used for output in "noritake" format +; bar_height = 32 + +# For SDL width and space between bars is in pixels, defaults are: +; bar_width = 20 +; bar_spacing = 5 + +# sdl_glsl have these default values, they are only used to calculate max number of bars. +; bar_width = 1 +; bar_spacing = 0 + + +# Lower and higher cutoff frequencies for lowest and highest bars +# the bandwidth of the visualizer. +# Note: there is a minimum total bandwidth of 43Mhz x number of bars. +# Cava will automatically increase the higher cutoff if a too low band is specified. +; lower_cutoff_freq = 20 +; higher_cutoff_freq = 20000 + + +# Seconds with no input before cava goes to sleep mode. Cava will not perform FFT or drawing and +# only check for input once per second. Cava will wake up once input is detected. 0 = disable. +; sleep_timer = 0 + + +[input] + +# Audio capturing method. Possible methods are: 'fifo', 'portaudio', 'pipewire', 'alsa', 'pulse', 'sndio', 'oss', 'jack' or 'shmem' +# Defaults to 'oss', 'pipewire', 'sndio', 'jack', 'pulse', 'alsa', 'portaudio' or 'fifo', in that order, dependent on what support cava was built with. +# On Mac it defaults to 'portaudio' or 'fifo' +# On windows this is automatic and no input settings are needed. +# +# All input methods uses the same config variable 'source' +# to define where it should get the audio. +# +# For pulseaudio and pipewire 'source' will be the source. Default: 'auto', which uses the monitor source of the default sink +# (all pulseaudio sinks(outputs) have 'monitor' sources(inputs) associated with them). +# +# For pipewire 'source' will be the object name or object.serial of the device to capture from. +# Both input and output devices are supported. +# +# For alsa 'source' will be the capture device. +# For fifo 'source' will be the path to fifo-file. +# For shmem 'source' will be /squeezelite-AA:BB:CC:DD:EE:FF where 'AA:BB:CC:DD:EE:FF' will be squeezelite's MAC address +# +# For sndio 'source' will be a raw recording audio descriptor or a monitoring sub-device, e.g. 'rsnd/2' or 'snd/1'. Default: 'default'. +# README.md contains further information on how to setup CAVA for sndio. +# +# For oss 'source' will be the path to a audio device, e.g. '/dev/dsp2'. Default: '/dev/dsp', i.e. the default audio device. +# README.md contains further information on how to setup CAVA for OSS on FreeBSD. +# +# For jack 'source' will be the name of the JACK server to connect to, e.g. 'foobar'. Default: 'default'. +# README.md contains further information on how to setup CAVA for JACK. +# +; method = pulse +; source = auto + +; method = pipewire +; source = auto + +; method = alsa +; source = hw:Loopback,1 + +; method = fifo +; source = /tmp/mpd.fifo + +; method = shmem +; source = /squeezelite-AA:BB:CC:DD:EE:FF + +; method = portaudio +; source = auto + +; method = sndio +; source = default + +; method = oss +; source = /dev/dsp + +; method = jack +; source = default + +# The options 'sample_rate', 'sample_bits', 'channels' and 'autoconnect' can be configured for some input methods: +# sample_rate: fifo, pipewire, sndio, oss +# sample_bits: fifo, pipewire, sndio, oss +# channels: sndio, oss, jack +# autoconnect: jack +# Other methods ignore these settings. +# +# For 'sndio' and 'oss' they are only preferred values, i.e. if the values are not supported +# by the chosen audio device, the device will use other supported values instead. +# Example: 48000, 32 and 2, but the device only supports 44100, 16 and 1, then it +# will use 44100, 16 and 1. +# +; sample_rate = 44100 +; sample_bits = 16 +; channels = 2 +; autoconnect = 2 + + +[output] + +# Output method. Can be 'ncurses', 'noncurses', 'raw', 'noritake', 'sdl' +# or 'sdl_glsl'. +# 'noncurses' (default) uses a buffer and cursor movements to only print +# changes from frame to frame in the terminal. Uses less resources and is less +# prone to tearing (vsync issues) than 'ncurses'. +# +# 'raw' is an 8 or 16 bit (configurable via the 'bit_format' option) data +# stream of the bar heights that can be used to send to other applications. +# 'raw' defaults to 200 bars, which can be adjusted in the 'bars' option above. +# +# 'noritake' outputs a bitmap in the format expected by a Noritake VFD display +# in graphic mode. It only support the 3000 series graphical VFDs for now. +# +# 'sdl' uses the Simple DirectMedia Layer to render in a graphical context. +# 'sdl_glsl' uses SDL to create an OpenGL context. Write your own shaders or +# use one of the predefined ones. +; method = noncurses + +# Orientation of the visualization. Can be 'bottom', 'top', 'left', 'right' or +# 'horizontal'. Default is 'bottom'. 'left and 'right' are only supported on sdl +# and ncruses output. 'horizontal' (bars go up and down from center) is only supported +# on noncurses output. +# Note: many fonts have weird or missing glyphs for characters used in orientations +# other than 'bottom', which can make output not look right. +; orientation = bottom + +# Visual channels. Can be 'stereo' or 'mono'. +# 'stereo' mirrors both channels with low frequencies in center. +# 'mono' outputs left to right lowest to highest frequencies. +# 'mono_option' set mono to either take input from 'left', 'right' or 'average'. +# set 'reverse' to 1 to display frequencies the other way around. +; channels = mono +; mono_option = average +; reverse = 0 + +# Raw output target. +# On Linux, a fifo will be created if target does not exist. +# On Windows, a named pipe will be created if target does not exist. +; raw_target = /dev/stdout + +# Raw data format. Can be 'binary' or 'ascii'. +; data_format = binary + +# Binary bit format, can be '8bit' (0-255) or '16bit' (0-65530). +; bit_format = 16bit + +# Ascii max value. In 'ascii' mode range will run from 0 to value specified here +; ascii_max_range = 1000 + +# Ascii delimiters. In ascii format each bar and frame is separated by a delimiters. +# Use decimal value in ascii table (i.e. 59 = ';' and 10 = '\n' (line feed)). +; bar_delimiter = 59 +; frame_delimiter = 10 + +# sdl window size and position. -1,-1 is centered. +; sdl_width = 1000 +; sdl_height = 500 +; sdl_x = -1 +; sdl_y= -1 +; sdl_full_screen = 0 + +# set label on bars on the x-axis. Can be 'frequency' or 'none'. Default: 'none' +# 'frequency' displays the lower cut off frequency of the bar above. +# Only supported on ncurses and noncurses output. +; xaxis = none + +# enable synchronized sync. 1 = on, 0 = off +# removes flickering in alacritty terminal emulator. +# defaults to off since the behaviour in other terminal emulators is unknown +; synchronized_sync = 0 + +# Shaders for sdl_glsl, located in $HOME/.config/cava/shaders +; vertex_shader = pass_through.vert +; fragment_shader = bar_spectrum.frag + +; for glsl output mode, keep rendering even if no audio +; continuous_rendering = 0 + +# disable console blank (screen saver) in tty +# (Not supported on FreeBSD) +; disable_blanking = 0 + +# show a flat bar at the bottom of the screen when idle, 1 = on, 0 = off +; show_idle_bar_heads = 1 + +# show waveform instead of frequency spectrum, 1 = on, 0 = off +; waveform = 1 + +[color] +background = '#1e1e2e' + +gradient = 1 + +gradient_color_1 = '#94e2d5' +gradient_color_2 = '#89dceb' +gradient_color_3 = '#74c7ec' +gradient_color_4 = '#89b4fa' +gradient_color_5 = '#cba6f7' +gradient_color_6 = '#f5c2e7' +gradient_color_7 = '#eba0ac' +gradient_color_8 = '#f38ba8' + + + + +[smoothing] + +# Percentage value for integral smoothing. Takes values from 0 - 100. +# Higher values means smoother, but less precise. 0 to disable. +# DEPRECATED as of 0.8.0, use noise_reduction instead +; integral = 77 + +# Disables or enables the so-called "Monstercat smoothing" with or without "waves". Set to 0 to disable. +; monstercat = 1 +; waves = 1 + +# Set gravity percentage for "drop off". Higher values means bars will drop faster. +# Accepts only non-negative values. 50 means half gravity, 200 means double. Set to 0 to disable "drop off". +# DEPRECATED as of 0.8.0, use noise_reduction instead +; gravity = 100 + + +# In bar height, bars that would have been lower that this will not be drawn. +# DEPRECATED as of 0.8.0 +; ignore = 0 + +# Noise reduction, int 0 - 100. default 77 +# the raw visualization is very noisy, this factor adjusts the integral and gravity filters to keep the signal smooth +# 100 will be very slow and smooth, 0 will be fast but noisy. +; noise_reduction = 0 + + +[eq] + +# This one is tricky. You can have as much keys as you want. +# Remember to uncomment more than one key! More keys = more precision. +# Look at readme.md on github for further explanations and examples. +; 1 = 1 # bass +; 2 = 1 +; 3 = 1 # midtone +; 4 = 1 +; 5 = 1 # treble diff --git a/Discord/Theme b/Discord/Theme new file mode 100644 index 0000000..95ec62d --- /dev/null +++ b/Discord/Theme @@ -0,0 +1 @@ +@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css"); diff --git a/Fastfetch/ascii.txt b/Fastfetch/ascii.txt new file mode 100644 index 0000000..3b3e283 --- /dev/null +++ b/Fastfetch/ascii.txt @@ -0,0 +1,18 @@ +$1⠀⠀⠀⠀⣀⡀ +$1⠀⠀⠀⠀⣿⠙⣦⠀⠀⠀⠀⠀⠀⣀⣤⡶⠛⠁ +$2⠀⠀⠀⠀⢻⠀⠈⠳⠀⠀⣀⣴⡾⠛⠁⣠⠂⢠⠇ +$2⠀⠀⠀⠀⠈⢀⣀⠤⢤⡶⠟⠁⢀⣴⣟⠀⠀⣾ +$3⠀⠀⠀⠠⠞⠉⢁⠀⠉⠀⢀⣠⣾⣿⣏⠀⢠⡇ +$3⠀⠀⡰⠋⠀⢰⠃⠀⠀⠉⠛⠿⠿⠏⠁⠀⣸⠁ +$4⠀⠀⣄⠀⠀⠏⣤⣤⣀⡀⠀⠀⠀⠀⠀⠾⢯⣀ +$4⠀⠀⣻⠃⠀⣰⡿⠛⠁⠀⠀⠀⢤⣀⡀⠀⠺⣿⡟⠛⠁ +$5⠀⡠⠋⡤⠠⠋⠀⠀⢀⠐⠁⠀⠈⣙⢯⡃⠀⢈⡻⣦ +$5⢰⣷⠇⠀⠀⠀⢀⡠⠃⠀⠀⠀⠀⠈⠻⢯⡄⠀⢻⣿⣷ +$6⠀⠉⠲⣶⣶⢾⣉⣐⡚⠋⠀⠀⠀⠀⠀⠘⠀⠀⡎⣿⣿⡇ +$6⠀⠀⠀⠀⠀⣸⣿⣿⣿⣷⡄⠀⠀⢠⣿⣴⠀⠀⣿⣿⣿⣧ +$7⠀⠀⠀⢀⣴⣿⣿⣿⣿⣿⠇⠀⢠⠟⣿⠏⢀⣾⠟⢸⣿⡇ +$7⠀⠀⢠⣿⣿⣿⣿⠟⠘⠁⢠⠜⢉⣐⡥⠞⠋⢁⣴⣿⣿⠃ +$8⠀⠀⣾⢻⣿⣿⠃⠀⠀⡀⢀⡄⠁⠀⠀⢠⡾ᵇʸ ᵗⁿᵏᵃ⠁ +$8⠀⠀⠃⢸⣿⡇⠀⢠⣾⡇⢸⡇⠀⠀⠀⡞ +$9⠀⠀⠀⠈⢿⡇⡰⠋⠈⠙⠂⠙⠢ +$9⠀⠀⠀⠀⠈⢧ \ No newline at end of file diff --git a/Fastfetch/config.jsonc b/Fastfetch/config.jsonc new file mode 100644 index 0000000..148c708 --- /dev/null +++ b/Fastfetch/config.jsonc @@ -0,0 +1,68 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "type": "file", + "source": "C:/Users/%USERPROFILE%/.config/fastfetch/ascii.txt", + "color": { + "1": "#F5E0DC", + "2": "#F2CDCD", + "3": "#F5C2E7", + "4": "#FAB387", + "5": "#F9E2AF", + "6": "#A6E3A1", + "7": "#94E2D5", + "8": "#89DCEB", + "9": "#74C7EC" + }, + "padding": { + "top": 1, + "right": 3 + } + }, + "display": { + "separator": " " + }, + "modules": [ + "break", + { + "type": "title", + "color": { + "user": "#F5C2E7", + "at": "#CDD6F4", + "host": "#89DCEB" + } + }, + "break", + { + "type": "os", + "key": "", + "keyColor": "#89DCEB" + }, + { + "type": "cpu", + "key": "", + "keyColor": "#F5C2E7" + }, + { + "type": "board", + "key": "󰚗", + "keyColor": "#FAB387" + }, + { + "type": "memory", + "key": "", + "keyColor": "#A6E3A1", + "format": "{used} / {total} ({percentage})" + }, + { + "type": "disk", + "key": "", + "keyColor": "#94E2D5" + }, + "break", + { + "type": "colors", + "symbol": "circle" + } + ] +} diff --git a/File Explorer/config.ini b/File Explorer/config.ini new file mode 100644 index 0000000..3ad269a --- /dev/null +++ b/File Explorer/config.ini @@ -0,0 +1,16 @@ +[config] +effect=1 +clearAddress=true +clearBarBg=true +clearWinUIBg=true +showLine=true +[light] +r=255 +g=255 +b=255 +a=200 +[dark] +r=0 +g=0 +b=0 +a=120 diff --git a/Flow Launcher/Theme/Catppuccin Mocha.xaml b/Flow Launcher/Theme/Catppuccin Mocha.xaml new file mode 100644 index 0000000..5437e68 --- /dev/null +++ b/Flow Launcher/Theme/Catppuccin Mocha.xaml @@ -0,0 +1,154 @@ + + + + + True + Auto + #181825 + #181825 + + + + + + + + + + + + + + #313244 + + + + + + + + + + + + + + + + + diff --git a/Flow Launcher/temp b/Flow Launcher/temp new file mode 100644 index 0000000..039727e --- /dev/null +++ b/Flow Launcher/temp @@ -0,0 +1 @@ +lol diff --git a/GlazeWM/config.yaml b/GlazeWM/config.yaml new file mode 100644 index 0000000..73c36f7 --- /dev/null +++ b/GlazeWM/config.yaml @@ -0,0 +1,321 @@ +general: + # Commands to run when the WM has started. This is useful for running a + # script or launching another application. + # Example: The below command launches Zebar. + startup_commands: [] + + # Commands to run just before the WM is shutdown. + # Example: The below command kills Zebar. + shutdown_commands: [] + + # Commands to run after the WM config is reloaded. + config_reload_commands: [] + + # Whether to automatically focus windows underneath the cursor. + focus_follows_cursor: false + + # Whether to switch back and forth between the previously focused + # workspace when focusing the current workspace. + toggle_workspace_on_refocus: false + + cursor_jump: + # Whether to automatically move the cursor on the specified trigger. + enabled: true + + # Trigger for cursor jump: + # - 'monitor_focus': Jump when focus changes between monitors. + # - 'window_focus': Jump when focus changes between windows. + trigger: 'monitor_focus' + + # How windows should be hidden when switching workspaces. + # - 'cloak': Recommended. Hides windows with no animation. + # - 'hide': Legacy method (v3.5 and earlier) that has a brief animation, + # but has stability issues with some apps. + hide_method: 'cloak' + + # Affects which windows get shown in the native Windows taskbar. Has no + # effect if `hide_method: 'hide'`. + # - 'true': Show all windows (regardless of workspace). + # - 'false': Only show windows from the currently shown workspaces. + show_all_in_taskbar: false + +gaps: + # Whether to scale the gaps with the DPI of the monitor. + scale_with_dpi: true + + # Gap between adjacent windows. + inner_gap: '10px' + + # Gap between windows and the screen edge. + outer_gap: + top: '6px' + right: '6x' + bottom: '6px' + left: '6px' + +window_effects: + # Visual effects to apply to the focused window. + focused_window: + # Highlight the window with a colored border. + # ** Exclusive to Windows 11 due to API limitations. + border: + enabled: true + color: '#8dbcff' + + # Remove the title bar from the window's frame. Note that this can + # cause rendering issues for some applications. + hide_title_bar: + enabled: false + + # Change the corner style of the window's frame. + # ** Exclusive to Windows 11 due to API limitations. + corner_style: + enabled: false + # Allowed values: 'square', 'rounded', 'small_rounded'. + style: 'square' + + # Change the transparency of the window. + transparency: + enabled: false + # Can be something like '95%' or '0.95' for slightly transparent windows. + # '0' or '0%' is fully transparent (and, by consequence, unfocusable). + opacity: '95%' + + # Visual effects to apply to non-focused windows. + other_windows: + border: + enabled: true + color: '#a1a1a1' + hide_title_bar: + enabled: false + corner_style: + enabled: false + style: 'square' + transparency: + enabled: true + opacity: '90%' + +window_behavior: + # New windows are created in this state whenever possible. + # Allowed values: 'tiling', 'floating'. + initial_state: 'tiling' + + # Sets the default options for when a new window is created. This also + # changes the defaults for when the state change commands, like + # `set-floating`, are used without any flags. + state_defaults: + floating: + # Whether to center floating windows by default. + centered: true + + # Whether to show floating windows as always on top. + shown_on_top: false + + fullscreen: + # Maximize the window if possible. If the window doesn't have a + # maximize button, then it'll be fullscreen'ed normally instead. + maximized: false + + # Whether to show fullscreen windows as always on top. + shown_on_top: false + +workspaces: + - name: '1' + - name: '2' + - name: '3' + - name: '4' + - name: '5' + - name: '6' + - name: '7' + - name: '8' + - name: '9' + +window_rules: + - commands: ['ignore'] + match: + # Ignores any Zebar windows. + - window_process: { equals: 'zebar' } + + # Ignores picture-in-picture windows for browsers. + - window_title: { regex: '[Pp]icture.in.[Pp]icture' } + window_class: { regex: 'Chrome_WidgetWin_1|MozillaDialogClass' } + + # Ignore rules for various 3rd-party apps. + - window_process: { equals: 'PowerToys' } + window_class: { regex: 'HwndWrapper\[PowerToys\.PowerAccent.*?\]' } + - window_process: { equals: 'PowerToys' } + window_title: { regex: '.*? - Peek' } + - window_process: { equals: 'Lively' } + window_class: { regex: 'HwndWrapper' } + - window_process: { equals: 'EXCEL' } + window_class: { not_regex: 'XLMAIN' } + - window_process: { equals: 'WINWORD' } + window_class: { not_regex: 'OpusApp' } + - window_process: { equals: 'POWERPNT' } + window_class: { not_regex: 'PPTFrameClass' } + +binding_modes: + # When enabled, the focused window can be resized via arrow keys or HJKL. + - name: 'resize' + keybindings: + - commands: ['resize --width -2%'] + bindings: ['h', 'left'] + - commands: ['resize --width +2%'] + bindings: ['l', 'right'] + - commands: ['resize --height +2%'] + bindings: ['k', 'up'] + - commands: ['resize --height -2%'] + bindings: ['j', 'down'] + # Press enter/escape to return to default keybindings. + - commands: ['wm-disable-binding-mode --name resize'] + bindings: ['escape', 'enter'] + +keybindings: + # Shift focus in a given direction. + - commands: ['focus --direction left'] + bindings: ['alt+h', 'alt+left'] + - commands: ['focus --direction right'] + bindings: ['alt+l', 'alt+right'] + - commands: ['focus --direction up'] + bindings: ['alt+k', 'alt+up'] + - commands: ['focus --direction down'] + bindings: ['alt+j', 'alt+down'] + + # Move focused window in a given direction. + - commands: ['move --direction left'] + bindings: ['alt+shift+h', 'alt+shift+left'] + - commands: ['move --direction right'] + bindings: ['alt+shift+l', 'alt+shift+right'] + - commands: ['move --direction up'] + bindings: ['alt+shift+k', 'alt+shift+up'] + - commands: ['move --direction down'] + bindings: ['alt+shift+j', 'alt+shift+down'] + + # Resize focused window by a percentage or pixel amount. + - commands: ['resize --width -2%'] + bindings: ['alt+u'] + - commands: ['resize --width +2%'] + bindings: ['alt+p'] + - commands: ['resize --height +2%'] + bindings: ['alt+o'] + - commands: ['resize --height -2%'] + bindings: ['alt+i'] + + # As an alternative to the resize keybindings above, resize mode enables + # resizing via arrow keys or HJKL. The binding mode is defined above with + # the name 'resize'. + - commands: ['wm-enable-binding-mode --name resize'] + bindings: ['alt+r'] + + # Disables window management and all other keybindings until alt+shift+p + # is pressed again. + - commands: ['wm-toggle-pause'] + bindings: ['alt+shift+p'] + + # Change tiling direction. This determines where new tiling windows will + # be inserted. + - commands: ['toggle-tiling-direction'] + bindings: ['alt+v'] + + # Change focus from tiling windows -> floating -> fullscreen. + - commands: ['wm-cycle-focus'] + bindings: ['alt+space'] + + # Change the focused window to be floating. + - commands: ['toggle-floating --centered'] + bindings: ['alt+shift+space'] + + # Change the focused window to be tiling. + - commands: ['toggle-tiling'] + bindings: ['alt+t'] + + # Change the focused window to be fullscreen. + - commands: ['toggle-fullscreen'] + bindings: ['alt+f'] + + # Minimize focused window. + - commands: ['toggle-minimized'] + bindings: ['alt+m'] + + # Close focused window. + - commands: ['close'] + bindings: ['alt+shift+q'] + + # Kill GlazeWM process safely. + - commands: ['wm-exit'] + bindings: ['alt+shift+e'] + + # Re-evaluate configuration file. + - commands: ['wm-reload-config'] + bindings: ['alt+shift+r'] + + # Redraw all windows. + - commands: ['wm-redraw'] + bindings: ['alt+shift+w'] + + # Launch CMD terminal. Alternatively, use `shell-exec wt` or + # `shell-exec %ProgramFiles%/Git/git-bash.exe` to start Windows + # Terminal and Git Bash respectively. + - commands: ['shell-exec wt'] + bindings: ['alt+enter'] + + # Focus the next/previous active workspace defined in `workspaces` config. + - commands: ['focus --next-active-workspace'] + bindings: ['alt+s'] + - commands: ['focus --prev-active-workspace'] + bindings: ['alt+a'] + + # Focus the workspace that last had focus. + - commands: ['focus --recent-workspace'] + bindings: ['alt+d'] + + # Change focus to a workspace defined in `workspaces` config. + - commands: ['focus --workspace 1'] + bindings: ['alt+1'] + - commands: ['focus --workspace 2'] + bindings: ['alt+2'] + - commands: ['focus --workspace 3'] + bindings: ['alt+3'] + - commands: ['focus --workspace 4'] + bindings: ['alt+4'] + - commands: ['focus --workspace 5'] + bindings: ['alt+5'] + - commands: ['focus --workspace 6'] + bindings: ['alt+6'] + - commands: ['focus --workspace 7'] + bindings: ['alt+7'] + - commands: ['focus --workspace 8'] + bindings: ['alt+8'] + - commands: ['focus --workspace 9'] + bindings: ['alt+9'] + + # Move the focused window's parent workspace to a monitor in a given + # direction. + - commands: ['move-workspace --direction left'] + bindings: ['alt+shift+a'] + - commands: ['move-workspace --direction right'] + bindings: ['alt+shift+f'] + - commands: ['move-workspace --direction up'] + bindings: ['alt+shift+d'] + - commands: ['move-workspace --direction down'] + bindings: ['alt+shift+s'] + + # Move focused window to a workspace defined in `workspaces` config. + - commands: ['move --workspace 1', 'focus --workspace 1'] + bindings: ['alt+shift+1'] + - commands: ['move --workspace 2', 'focus --workspace 2'] + bindings: ['alt+shift+2'] + - commands: ['move --workspace 3', 'focus --workspace 3'] + bindings: ['alt+shift+3'] + - commands: ['move --workspace 4', 'focus --workspace 4'] + bindings: ['alt+shift+4'] + - commands: ['move --workspace 5', 'focus --workspace 5'] + bindings: ['alt+shift+5'] + - commands: ['move --workspace 6', 'focus --workspace 6'] + bindings: ['alt+shift+6'] + - commands: ['move --workspace 7', 'focus --workspace 7'] + bindings: ['alt+shift+7'] + - commands: ['move --workspace 8', 'focus --workspace 8'] + bindings: ['alt+shift+8'] + - commands: ['move --workspace 9', 'focus --workspace 9'] + bindings: ['alt+shift+9'] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..48e9089 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Sam! + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/OBS/Catppuccin_Mocha.ovt b/OBS/Catppuccin_Mocha.ovt new file mode 100644 index 0000000..0dd4ae7 --- /dev/null +++ b/OBS/Catppuccin_Mocha.ovt @@ -0,0 +1,326 @@ +@OBSThemeMeta { + name: 'Mocha'; + id: 'com.obsproject.Catppuccin.Mocha'; + extends: 'com.obsproject.Catppuccin'; + author: 'Xurdejl'; + dark: 'true'; +} + +@OBSThemeVars { + --ctp_rosewater: #f5e0dc; + --ctp_flamingo: #f2cdcd; + --ctp_pink: #f5c2e7; + --ctp_mauve: #cba6f7; + --ctp_red: #f38ba8; + --ctp_maroon: #eba0ac; + --ctp_peach: #fab387; + --ctp_yellow: #f9e2af; + --ctp_green: #a6e3a1; + --ctp_teal: #94e2d5; + --ctp_sky: #89dceb; + --ctp_sapphire: #74c7ec; + --ctp_blue: #89b4fa; + --ctp_lavender: #b4befe; + --ctp_text: #cdd6f4; + --ctp_subtext1: #bac2de; + --ctp_subtext0: #a6adc8; + --ctp_overlay2: #9399b2; + --ctp_overlay1: #7f849c; + --ctp_overlay0: #6c7086; + --ctp_surface2: #585b70; + --ctp_surface1: #45475a; + --ctp_surface0: #313244; + --ctp_base: #1e1e2e; + --ctp_mantle: #181825; + --ctp_crust: #11111b; + --ctp_selection_background: #353649; +} + +VolumeMeter { + qproperty-foregroundNominalColor: #6fd266; + qproperty-foregroundWarningColor: #f7853f; + qproperty-foregroundErrorColor: #ec4675; +} + +/* Icon Overrides */ + +.icon-plus { + qproperty-icon: url(theme:Dark/plus.svg); +} + +.icon-minus { + qproperty-icon: url(theme:Dark/minus.svg); +} + +.icon-trash { + qproperty-icon: url(theme:Dark/trash.svg); +} + +.icon-clear { + qproperty-icon: url(theme:Dark/entry-clear.svg); +} + +.icon-gear { + qproperty-icon: url(theme:Dark/settings/general.svg); +} + +.icon-dots-vert { + qproperty-icon: url(theme:Dark/dots-vert.svg); +} + +.icon-refresh { + qproperty-icon: url(theme:Dark/refresh.svg); +} + +.icon-cogs { + qproperty-icon: url(theme:Dark/cogs.svg); +} + +.icon-touch { + qproperty-icon: url(theme:Dark/interact.svg); +} + +.icon-up { + qproperty-icon: url(theme:Dark/up.svg); +} + +.icon-down { + qproperty-icon: url(theme:Dark/down.svg); +} + +.icon-pause { + qproperty-icon: url(theme:Dark/media-pause.svg); +} + +.icon-filter { + qproperty-icon: url(theme:Dark/filter.svg); +} + +.icon-revert { + qproperty-icon: url(theme:Dark/revert.svg); +} + +.icon-save { + qproperty-icon: url(theme:Dark/save.svg); +} + +/* Media icons */ + +.icon-media-play { + qproperty-icon: url(theme:Dark/media/media_play.svg); +} + +.icon-media-pause { + qproperty-icon: url(theme:Dark/media/media_pause.svg); +} + +.icon-media-restart { + qproperty-icon: url(theme:Dark/media/media_restart.svg); +} + +.icon-media-stop { + qproperty-icon: url(theme:Dark/media/media_stop.svg); +} + +.icon-media-next { + qproperty-icon: url(theme:Dark/media/media_next.svg); +} + +.icon-media-prev { + qproperty-icon: url(theme:Dark/media/media_previous.svg); +} + +/* Context Menu */ +QMenu::right-arrow { + image: url(theme:Dark/expand.svg); +} + +/* Dock Widget */ +QDockWidget { + titlebar-close-icon: url(theme:Dark/close.svg); + titlebar-normal-icon: url(theme:Dark/popout.svg); +} + +/* Source Context Bar */ +QPushButton#sourcePropertiesButton { + qproperty-icon: url(theme:Dark/settings/general.svg); +} + +QPushButton#sourceFiltersButton { + qproperty-icon: url(theme:Dark/filter.svg); +} + +/* Scenes and Sources toolbar */ +QToolBarExtension { + qproperty-icon: url(theme:Dark/dots-vert.svg); +} + +/* ComboBox */ +QComboBox::down-arrow, +QDateTimeEdit::down-arrow { + image: url(theme:Dark/collapse.svg); +} + +QComboBox::down-arrow:editable, +QDateTimeEdit::down-arrow:editable { + image: url(theme:Dark/collapse.svg); +} + +/* Spinbox and doubleSpinbox */ +QSpinBox::up-arrow, +QDoubleSpinBox::up-arrow { + image: url(theme:Dark/up.svg); +} + +QSpinBox::down-arrow, +QDoubleSpinBox::down-arrow { + image: url(theme:Dark/down.svg); +} + +/* Buttons */ +QPushButton::menu-indicator { + image: url(theme:Dark/down.svg); +} + +/* Settings Icons */ +OBSBasicSettings { + qproperty-generalIcon: url(theme:Dark/settings/general.svg); + qproperty-appearanceIcon: url(theme:Dark/settings/appearance.svg); + qproperty-streamIcon: url(theme:Dark/settings/stream.svg); + qproperty-outputIcon: url(theme:Dark/settings/output.svg); + qproperty-audioIcon: url(theme:Dark/settings/audio.svg); + qproperty-videoIcon: url(theme:Dark/settings/video.svg); + qproperty-hotkeysIcon: url(theme:Dark/settings/hotkeys.svg); + qproperty-accessibilityIcon: url(theme:Dark/settings/accessibility.svg); + qproperty-advancedIcon: url(theme:Dark/settings/advanced.svg); +} + +/* Checkboxes */ +QCheckBox::indicator:unchecked, +QGroupBox::indicator:unchecked { + image: url(theme:Yami/checkbox_unchecked.svg); +} + +QCheckBox::indicator:unchecked:hover, +QGroupBox::indicator:unchecked:hover { + border: none; + image: url(theme:Yami/checkbox_unchecked_focus.svg); +} + +QCheckBox::indicator:checked, +QGroupBox::indicator:checked { + image: url(theme:Yami/checkbox_checked.svg); +} + +QCheckBox::indicator:checked:hover, +QGroupBox::indicator:checked:hover { + image: url(theme:Yami/checkbox_checked_focus.svg); +} + +QCheckBox::indicator:checked:disabled, +QGroupBox::indicator:checked:disabled { + image: url(theme:Yami/checkbox_checked_disabled.svg); +} + +/* Locked CheckBox */ +.indicator-lock::indicator:checked, +.indicator-lock::indicator:checked:hover { + image: url(theme:Dark/locked.svg); +} + +/* Visibility CheckBox */ +.indicator-visibility::indicator:checked, +.indicator-visibility::indicator:checked:hover { + image: url(theme:Dark/visible.svg); +} + +/* Mute CheckBox */ +.indicator-mute::indicator:checked { + image: url(theme:Dark/mute.svg); +} + +.indicator-mute::indicator:indeterminate { + image: url(theme:Dark/unassigned.svg); +} + +.indicator-mute::indicator:unchecked { + image: url(theme:Dark/settings/audio.svg); +} + +.indicator-mute::indicator:unchecked:hover { + image: url(theme:Dark/settings/audio.svg); +} + +.indicator-mute::indicator:unchecked:focus { + image: url(theme:Dark/settings/audio.svg); +} + +.indicator-mute::indicator:checked:hover { + image: url(theme:Dark/mute.svg); +} + +.indicator-mute::indicator:checked:focus { + image: url(theme:Dark/mute.svg); +} + +.indicator-mute::indicator:checked:disabled { + image: url(theme:Dark/mute.svg); +} + +.indicator-mute::indicator:unchecked:disabled { + image: url(theme:Dark/settings/audio.svg); +} + +/* Sources List Group Collapse Checkbox */ +.indicator-expand::indicator:checked, +.indicator-expand::indicator:checked:hover { + image: url(theme:Dark/expand.svg); +} + +.indicator-expand::indicator:unchecked, +.indicator-expand::indicator:unchecked:hover { + image: url(theme:Dark/collapse.svg); +} + +/* Source Icons */ +OBSBasic { + qproperty-imageIcon: url(theme:Dark/sources/image.svg); + qproperty-colorIcon: url(theme:Dark/sources/brush.svg); + qproperty-slideshowIcon: url(theme:Dark/sources/slideshow.svg); + qproperty-audioInputIcon: url(theme:Dark/sources/microphone.svg); + qproperty-audioOutputIcon: url(theme:Dark/settings/audio.svg); + qproperty-desktopCapIcon: url(theme:Dark/settings/video.svg); + qproperty-windowCapIcon: url(theme:Dark/sources/window.svg); + qproperty-gameCapIcon: url(theme:Dark/sources/gamepad.svg); + qproperty-cameraIcon: url(theme:Dark/sources/camera.svg); + qproperty-textIcon: url(theme:Dark/sources/text.svg); + qproperty-mediaIcon: url(theme:Dark/sources/media.svg); + qproperty-browserIcon: url(theme:Dark/sources/globe.svg); + qproperty-groupIcon: url(theme:Dark/sources/group.svg); + qproperty-sceneIcon: url(theme:Dark/sources/scene.svg); + qproperty-defaultIcon: url(theme:Dark/sources/default.svg); + qproperty-audioProcessOutputIcon: url(theme:Dark/sources/windowaudio.svg); +} + +/* YouTube Integration */ +OBSYoutubeActions { + qproperty-thumbPlaceholder: url(theme:Dark/sources/image.svg); +} + +/* Calendar Widget */ +QDateTimeEdit::down-arrow { + image: url(theme:Dark/down.svg); +} + +/* Calendar Top Bar Buttons */ +#qt_calendar_monthbutton::menu-indicator { + image: url(theme:Dark/down.svg); +} + +QCalendarWidget #qt_calendar_prevmonth { + qproperty-icon: url(theme:Dark/left.svg); +} + +QCalendarWidget #qt_calendar_nextmonth { + qproperty-icon: url(theme:Dark/right.svg); +} diff --git a/PowerShell/Microsoft.PowerShell_profile.ps1 b/PowerShell/Microsoft.PowerShell_profile.ps1 new file mode 100644 index 0000000..1a6862a --- /dev/null +++ b/PowerShell/Microsoft.PowerShell_profile.ps1 @@ -0,0 +1,14 @@ +# Minimal profile: UTF‑8 + Oh My Posh (if installed) + Fastfetch with explicit config path +try { + [Console]::InputEncoding = [System.Text.Encoding]::UTF8 + [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 + $OutputEncoding = [System.Text.UTF8Encoding]::new($false) + chcp 65001 > $null +} catch {} + +Clear-Host + +# Force Fastfetch to use YOUR config every time (bypass path confusion) +if (Get-Command fastfetch -ErrorAction SilentlyContinue) { + fastfetch -c "C:/Users/%USERPROFILE%/.config/fastfetch/config.jsonc" +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..ed012fb --- /dev/null +++ b/README.md @@ -0,0 +1,195 @@ +

⚠️ UNDER CONSTRUCTION ⚠️

+

✨ My Windows 11 Setup ✨

+ +

+A complete guide to my Windows 11 customization – from the YASB bar to all the little tweaks that make it clean, aesthetic, and productive. +

+ +--- + +## 🖼️ Screenshot +![My Desktop Screenshot](screenshot.png) + +--- + +## 📑 Table of Contents + +| 📚 Entry | ✨ App | +|---------------------|------------| +| Status Bar | [YASB](#yasb) | +| Window Manager | [GlazeWM](#glazewm) | +| App Launcher | [Flow Launcher](#flowlauncher) | +| Taskbar | [Windhawk](#windhawk) | +| Text Editor | [VSCode](#vscode) | +| Terminal | [Windows Terminal](#windows-terminal) | +| Browser | [Brave](#brave) | +| System Fetch | [Fastfetch](#Fastfetch) | +| Shell Prompt | [Oh My Posh](#ohmyposh) | +| Audio Visualizer | [Cava](#cava) | +| Music Player | [Spotify](#spotify) | +| Note Taking | [Notesnook](#notesnook) | +| Screen Recording | [OBS Studio](#obsstudio) | +| File Explorer Mod | [ExplorerBlurMica](#ExplorerBlurMica) | +| Other Tools | [Extras](#extras) | + +Other + +| 📚 Entry | ✨ App | +|---------------------|------------| +| Colorscheme | [Catppuccin Mocha](#catppuccinmocha) | +| Font | [JetBrainsMono Nerd Font](#jetbrainsmononerdfont) | + + +--- + +# ⚡ Details + +## 📏 YASB +> [!NOTE] +> Some stuff in my config might not work if you just copy and paste it. Be sure to app your api for the weather widget to work and your wallpaper folder location for the wallpapers widget + +A highly configurable Windows status bar written in Python. + +**⚙️ Installation:** +You can follow the steps below, or jump to the [**setup video**](https://www.youtube.com/watch?v=your-video-id). +- Install [**YASB**]([(https://github.com/amnweb/yasb)]) +- Copy the config files from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/YASB). +- Remove the codes from **your** YASB config and paste the one you just copied. +- Restart **YASB** for the changes to take effect. + +--- + +## 🪟 GlazeWM + YASB +> [!NOTE] +> If your using my config then Zebar won't work as I use GlazeWM with YASB. I recommend adding those 2 lines of code back which I had deleted if you wanna use Zebar + +GlazeWM lets you easily organize windows and adjust their layout on the fly by using keyboard-driven commands. + +**⚙️ Installation:** +You can follow the steps below, or jump to the [**setup video**](https://youtu.be/b57zFm3nVxA). +- Install [**GlazeWM**](https://github.com/glzr-io/glazewm) +- Copy the config file from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/GlazeWM). +- Remove the codes from **your** GlazeWM config and paste the one you just copied. +- Restart **GlazeWM** for the changes to take effect. + +--- + +## 🦅 Windhawk +> [!NOTE] +> Right now I have just listed the advance section codes for the mods I use. If your using the taskbar config of mine then it would remove the start menu and network icon. To add them back follow [**this**](https://github.com/ramensoftware/windows-11-taskbar-styling-guide) + +Windhawk aims to make it easier to customize Windows programs. + +**⚙️ Installation:** +You can follow the steps below, or jump to the [**setup video**](https://youtu.be/b57zFm3nVxA) if you wanna know more about the taskbar. +- Install [**Windhawk**](https://windhawk.net/) +- Copy the config file from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/Windhawk). +- Remove the codes from the advance section in **your** Windhawk mod and paste the one you just copied. +- Click **Save settings** for the changes to take effect. + +--- + +## 🔍 Flow Launcher + +Quick File Search & App Launcher for Windows + +**⚙️ Installation:** +You can follow the steps below, +- Install [**Flow Launcher**](https://www.flowlauncher.com/). +- Download the theme file from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/Flow%20Launcher). +- Open Flow Launcher's Settings window, select **Appearance** on the sidebar, and click the "Open Theme Folder" button at the bottom. +- Move your theme file downloaded in Step 1 to this directory, and restart Flow Launcher. +- Again in Flow Launcher's Settings window, select **Appearance** on the sidebar, and select your Catppuccin flavor from the list of themes. +Installation guide was taken from [**here**](https://github.com/catppuccin/flow-launcher). Thanks :) + +--- + +## 📁 ExplorerBlurMica +> [!NOTE] +> A few people had said that they are getting bugs and crashes by using this, so I recommend to now use it and follow the windhawk method **here** (video will be added soon) + +Add background Blur effect or Acrylic or Mica effect to explorer for win10 and win11 + +**⚙️ Installation:** +You can follow the steps below, or jump to the [**setup video**](https://youtu.be/gpGeCZXXsbs). +- Install [**ExplorerBlurMica**](https://github.com/Maplespe/ExplorerBlurMica/releases) +- Copy the config file from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/File%20Explorer). +- For the next part, I'm using the default stuff so just follow the installation from [**here**](https://github.com/Maplespe/ExplorerBlurMica?tab=readme-ov-file#install) + +--- + +## 👾 Terminal + Fastfetch +> [!NOTE] +> If you just wanna fully use it just like I'm using then I recommend watchng the video. If you just want the config for Fastfetch then just paste the config where **your** Fastfetch config is located. If you have a PowerShell profile then just add your location and other stuff in your profile yourself as idk what you got. +> +> If you see **"execution of scripts is disabled on this system"**, don’t panic! Just open PowerShell as Administrator and run: +> `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser -Force` +> +> Also if you notice that the ASCII art is not showing then try editing `"source": "C:/Users/%USERPROFILE%/.config/fastfetch/ascii.txt"` to `"source": "%USERPROFILE%/.config/fastfetch/ascii.txt"`. That should fix it. [**Credits**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/issues/1#issue-3498937609). + +Fastfetch is a neofetch-like tool for fetching system information and displaying it in a visually appealing way. It is written mainly in C, with a focus on performance and customizability. + +**⚙️ Installation:** +You can follow the steps below, or jump to the [**setup video**](https://youtu.be/z3NpVq-y6jU) if you want your terminal to look 1:1 to mine. +- Install [**Fastfetch**](https://github.com/fastfetch-cli/fastfetch/releases) and I believe you already got the **Windows terminal** installed. +- Copy the config file for your Terminal [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/Terminal), PowerShell profile from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/PowerShell) and Fastfetch config from [**here**](https://github.com/SleepyCatHey/Ultimate-Win11-Setup/tree/main/Fastfetch) +- Remove the codes from the settings.json file in **your terminal** and paste the one you just copied from above. Do the same thing for your PowerShell profile. +- Create a **.config** *hidden* file in your C:\Users\%USERPROFILE% and create a folder called **fastfetch** inside. Copy the config and ascii code you just downloaded and paste it in that folder. +- Change the %USERPROFILE% from the config file in the fastfetch folder and the PowerShell profile with **your username**.. +- Restart your terminal and your done. If this feel complicated just watch the [**setup video**](https://youtu.be/z3NpVq-y6jU). + +--- + +## 📝 VSCode +> [!NOTE] +> This is just the base settings of my VSCode. Your(s) might look different than mine because I use many extensions along side that. I will try keeping my **Extensions** list up-to-date. + +Visual Studio Code (VS Code) is a free, open-source code editor by Microsoft for building and debugging modern web and cloud applications. + +**⚙️ Installation:** +You can follow the steps below, or jump to the [setup video](https://www.youtube.com/watch?v=your-video-id). (Video will be added soon) +- Install [**VSCode**](https://code.visualstudio.com/). +- Copy the config file: + `VSCode/Settings/settings.json → %APPDATA%\Code\User\settings.json`. +- Restart **VSCode** for the changes to take effect. + +**🔧 Extensions:** +- [Catppuccin for VSCode](https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc) - 🦌 Soothing pastel theme for VSCode. +- [Catppuccin Icons for VSCode](https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc-icons) - 🦊 Soothing pastel icon theme for VSCode. +- [VSCode Pets](https://marketplace.visualstudio.com/items?itemName=tonybaloney.vscode-pets) - Puts a pet in your code editor to boost productivity. + +--- + +## 🪟 AppName +> [!NOTE] +> This setup is compatible with the latest version of **AppName**. + +A short description about what the app/config does and why you’re using it. +(Example: Minimal tiling window manager setup with custom keybindings and themes.) + +**⚙️ Installation:** +You can follow the steps below, or jump to the [setup video](https://www.youtube.com/watch?v=your-video-id). +- Install [**AppName**](https://appname-website.com/download) +- Copy the config file: + `windots/.config/appname/config.file → %USERPROFILE%\.config\appname\config.file` +- Restart **AppName** for the changes to take effect + +--- + +### Arc Browser +Browser for work + aesthetic flow. +**Features:** +- Minimal UI +- Vertical tabs +- Productivity features + +--- + +### Extras +Other little tools & tweaks I use. +- [Wallpaper Engine](#) +- [AutoHotKey Scripts](#) +- [RoundedTB](#) + +--- + diff --git a/Terminal/settings.json b/Terminal/settings.json new file mode 100644 index 0000000..ca239a0 --- /dev/null +++ b/Terminal/settings.json @@ -0,0 +1,179 @@ +{ + "$help": "https://aka.ms/terminal-documentation", + "$schema": "https://aka.ms/terminal-profiles-schema", + "actions": + [ + { + "command": + { + "action": "copy", + "singleLine": false + }, + "id": "User.copy.644BA8F2" + }, + { + "command": "paste", + "id": "User.paste" + }, + { + "command": "find", + "id": "User.find" + }, + { + "command": + { + "action": "splitPane", + "split": "auto", + "splitMode": "duplicate" + }, + "id": "User.splitPane.A6751878" + } + ], + "alwaysOnTop": false, + "copyFormatting": "none", + "copyOnSelect": false, + "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "keybindings": + [ + { + "id": "User.copy.644BA8F2", + "keys": "ctrl+c" + }, + { + "id": "User.find", + "keys": "ctrl+shift+f" + }, + { + "id": "User.paste", + "keys": "ctrl+v" + }, + { + "id": "User.splitPane.A6751878", + "keys": "alt+shift+d" + } + ], + "newTabMenu": + [ + { + "type": "remainingProfiles" + } + ], + "profiles": + { + "defaults": + { + "colorScheme": "Catppuccin Mocha", + "cursorShape": "filledBox", + "experimental.retroTerminalEffect": false, + "font": + { + "builtinGlyphs": true, + "cellHeight": "1.2", + "colorGlyphs": true, + "face": "JetBrainsMono Nerd Font Mono", + "size": 10, + "weight": "extra-black" + }, + "intenseTextStyle": "all", + "opacity": 80, + "padding": "8", + "useAcrylic": true + }, + "list": + [ + { + "commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", + "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "hidden": false, + "name": "Windows PowerShell" + }, + { + "commandline": "%SystemRoot%\\System32\\cmd.exe", + "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", + "hidden": false, + "name": "Command Prompt" + }, + { + "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", + "hidden": false, + "name": "Azure Cloud Shell", + "source": "Windows.Terminal.Azure" + } + ] + }, + "schemes": + [ + { + "background": "#1E1E2E", + "black": "#45475A", + "blue": "#89B4FA", + "brightBlack": "#585B70", + "brightBlue": "#89B4FA", + "brightCyan": "#94E2D5", + "brightGreen": "#A6E3A1", + "brightPurple": "#F5C2E7", + "brightRed": "#F38BA8", + "brightWhite": "#A6ADC8", + "brightYellow": "#F9E2AF", + "cursorColor": "#F5E0DC", + "cyan": "#94E2D5", + "foreground": "#CDD6F4", + "green": "#A6E3A1", + "name": "Catppuccin Mocha", + "purple": "#F5C2E7", + "red": "#F38BA8", + "selectionBackground": "#585B70", + "white": "#BAC2DE", + "yellow": "#F9E2AF" + }, + { + "background": "#000000", + "black": "#0C0C0C", + "blue": "#0037DA", + "brightBlack": "#767676", + "brightBlue": "#3B78FF", + "brightCyan": "#61D6D6", + "brightGreen": "#16C60C", + "brightPurple": "#B4009E", + "brightRed": "#E74856", + "brightWhite": "#F2F2F2", + "brightYellow": "#F9F1A5", + "cursorColor": "#FFFFFF", + "cyan": "#3A96DD", + "foreground": "#FFFFFF", + "green": "#13A10E", + "name": "Color Scheme 15", + "purple": "#881798", + "red": "#C50F1F", + "selectionBackground": "#FFFFFF", + "white": "#CCCCCC", + "yellow": "#C19C00" + }, + { + "background": "#282A36", + "black": "#21222C", + "blue": "#BD93F9", + "brightBlack": "#6272A4", + "brightBlue": "#D6ACFF", + "brightCyan": "#A4FFFF", + "brightGreen": "#69FF94", + "brightPurple": "#FF92DF", + "brightRed": "#FF6E6E", + "brightWhite": "#FFFFFF", + "brightYellow": "#FFFFA5", + "cursorColor": "#F8F8F2", + "cyan": "#8BE9FD", + "foreground": "#F8F8F2", + "green": "#50FA7B", + "name": "Dracula", + "purple": "#FF79C6", + "red": "#FF5555", + "selectionBackground": "#44475A", + "white": "#F8F8F2", + "yellow": "#F1FA8C" + } + ], + "tabWidthMode": "titleLength", + "themes": [], + "useAcrylicInTabRow": true +} \ No newline at end of file diff --git a/VSCode/Settings/settings.json b/VSCode/Settings/settings.json new file mode 100644 index 0000000..17ff53e --- /dev/null +++ b/VSCode/Settings/settings.json @@ -0,0 +1,48 @@ +{ + "workbench.colorCustomizations": { + }, + "workbench.settings.applyToAllProfiles": [ + "workbench.colorCustomizations", + "vscode-pets.theme" + ], + "editor.cursorBlinking": "phase", + "editor.cursorSmoothCaretAnimation": "on", + "animations.Install-Method": "Custom UI Style", + "animations.Enabled": true, + "editor.bracketPairColorization.enabled": true, + "editor.unicodeHighlight.invisibleCharacters": false, + "editor.unicodeHighlight.ambiguousCharacters": false, + "editor.fontWeight": "bold", + "editor.fontLigatures": false, + "workbench.editor.empty.hint": "hidden", + "emmet.preferences": { + }, + "vscode-pets.throwBallWithMouse": true, + "vscode-pets.petSize": "small", + "python.analysis.completeFunctionParens": true, + "code-runner.clearPreviousOutput": true, + "code-runner.saveFileBeforeRun": true, + "editor.fontVariations": false, + "emmet.includeLanguages": { + "javascript": "javascriptreact" + }, + "emmet.triggerExpansionOnTab": true, + "github.copilot.enable": { + "plaintext": true, + "markdown": true, + "scminput": true + }, + "editor.quickSuggestions": { + "comments": "on", + "strings": "inline" + ], + "workbench.activityBar.location": "top", + "workbench.sideBar.location": "right", + "window.menuBarVisibility": "compact", + "window.commandCenter": false, + "workbench.colorTheme": "Catppuccin Mocha", + "workbench.iconTheme": "catppuccin-mocha", + "vscode-pets.theme": "forest", + "settingsSync.ignoredSettings": [], +} + diff --git a/Wallpapers/3d-model.jpg b/Wallpapers/3d-model.jpg new file mode 100644 index 0000000..5f2b2d3 Binary files /dev/null and b/Wallpapers/3d-model.jpg differ diff --git a/Wallpapers/Kurzgesagt-Galaxies.png b/Wallpapers/Kurzgesagt-Galaxies.png new file mode 100644 index 0000000..aab96b1 Binary files /dev/null and b/Wallpapers/Kurzgesagt-Galaxies.png differ diff --git a/Wallpapers/Kurzgesagt-Galaxy_3.png b/Wallpapers/Kurzgesagt-Galaxy_3.png new file mode 100644 index 0000000..3b4da6d Binary files /dev/null and b/Wallpapers/Kurzgesagt-Galaxy_3.png differ diff --git a/Wallpapers/Mocha-hald8-pinkish.jpg b/Wallpapers/Mocha-hald8-pinkish.jpg new file mode 100644 index 0000000..2860f23 Binary files /dev/null and b/Wallpapers/Mocha-hald8-pinkish.jpg differ diff --git a/Wallpapers/abandoned-trainstation.jpg b/Wallpapers/abandoned-trainstation.jpg new file mode 100644 index 0000000..3f5fc90 Binary files /dev/null and b/Wallpapers/abandoned-trainstation.jpg differ diff --git a/Wallpapers/abstract-swirls.jpg b/Wallpapers/abstract-swirls.jpg new file mode 100644 index 0000000..0948796 Binary files /dev/null and b/Wallpapers/abstract-swirls.jpg differ diff --git a/Wallpapers/aesthetic.jpg b/Wallpapers/aesthetic.jpg new file mode 100644 index 0000000..2a539c6 Binary files /dev/null and b/Wallpapers/aesthetic.jpg differ diff --git a/Wallpapers/artificial-valley.jpg b/Wallpapers/artificial-valley.jpg new file mode 100644 index 0000000..f6e317b Binary files /dev/null and b/Wallpapers/artificial-valley.jpg differ diff --git a/Wallpapers/asian-village.png b/Wallpapers/asian-village.png new file mode 100644 index 0000000..1ed2b3a Binary files /dev/null and b/Wallpapers/asian-village.png differ diff --git a/Wallpapers/astronaut.png b/Wallpapers/astronaut.png new file mode 100644 index 0000000..0f273fc Binary files /dev/null and b/Wallpapers/astronaut.png differ diff --git a/Wallpapers/atlantis.jpg b/Wallpapers/atlantis.jpg new file mode 100644 index 0000000..e1b8d7c Binary files /dev/null and b/Wallpapers/atlantis.jpg differ diff --git a/Wallpapers/bars.jpg b/Wallpapers/bars.jpg new file mode 100644 index 0000000..9c1668f Binary files /dev/null and b/Wallpapers/bars.jpg differ diff --git a/Wallpapers/basement.jpg b/Wallpapers/basement.jpg new file mode 100644 index 0000000..10dfc58 Binary files /dev/null and b/Wallpapers/basement.jpg differ diff --git a/Wallpapers/beach-path.jpg b/Wallpapers/beach-path.jpg new file mode 100644 index 0000000..a3ab4a6 Binary files /dev/null and b/Wallpapers/beach-path.jpg differ diff --git a/Wallpapers/beach.jpg b/Wallpapers/beach.jpg new file mode 100644 index 0000000..efe28bf Binary files /dev/null and b/Wallpapers/beach.jpg differ diff --git a/Wallpapers/berries-1.jpg b/Wallpapers/berries-1.jpg new file mode 100644 index 0000000..ec380f7 Binary files /dev/null and b/Wallpapers/berries-1.jpg differ diff --git a/Wallpapers/berries-2.jpg b/Wallpapers/berries-2.jpg new file mode 100644 index 0000000..1448166 Binary files /dev/null and b/Wallpapers/berries-2.jpg differ diff --git a/Wallpapers/biking-sunset.jpg b/Wallpapers/biking-sunset.jpg new file mode 100644 index 0000000..7b8c2a4 Binary files /dev/null and b/Wallpapers/biking-sunset.jpg differ diff --git a/Wallpapers/black-hole.png b/Wallpapers/black-hole.png new file mode 100644 index 0000000..a1b3e2b Binary files /dev/null and b/Wallpapers/black-hole.png differ diff --git a/Wallpapers/blue-flowers.jpg b/Wallpapers/blue-flowers.jpg new file mode 100644 index 0000000..9eda60e Binary files /dev/null and b/Wallpapers/blue-flowers.jpg differ diff --git a/Wallpapers/blue-kaiju.png b/Wallpapers/blue-kaiju.png new file mode 100644 index 0000000..95e388c Binary files /dev/null and b/Wallpapers/blue-kaiju.png differ diff --git a/Wallpapers/blue-landscape.png b/Wallpapers/blue-landscape.png new file mode 100644 index 0000000..ce56f4e Binary files /dev/null and b/Wallpapers/blue-landscape.png differ diff --git a/Wallpapers/blueberries.jpg b/Wallpapers/blueberries.jpg new file mode 100644 index 0000000..d29b2c6 Binary files /dev/null and b/Wallpapers/blueberries.jpg differ diff --git a/Wallpapers/bluehour.jpg b/Wallpapers/bluehour.jpg new file mode 100644 index 0000000..5bfa26d Binary files /dev/null and b/Wallpapers/bluehour.jpg differ diff --git a/Wallpapers/blueprint.png b/Wallpapers/blueprint.png new file mode 100644 index 0000000..edfaa9f Binary files /dev/null and b/Wallpapers/blueprint.png differ diff --git a/Wallpapers/bsod.png b/Wallpapers/bsod.png new file mode 100644 index 0000000..6535f77 Binary files /dev/null and b/Wallpapers/bsod.png differ diff --git a/Wallpapers/bunnies-road.png b/Wallpapers/bunnies-road.png new file mode 100644 index 0000000..02e78b9 Binary files /dev/null and b/Wallpapers/bunnies-road.png differ diff --git a/Wallpapers/c4-spring-sakura-sky.jpg b/Wallpapers/c4-spring-sakura-sky.jpg new file mode 100644 index 0000000..1af672c Binary files /dev/null and b/Wallpapers/c4-spring-sakura-sky.jpg differ diff --git a/Wallpapers/cabin-2.jpg b/Wallpapers/cabin-2.jpg new file mode 100644 index 0000000..2f1ab89 Binary files /dev/null and b/Wallpapers/cabin-2.jpg differ diff --git a/Wallpapers/cabin-3.png b/Wallpapers/cabin-3.png new file mode 100644 index 0000000..bd8315e Binary files /dev/null and b/Wallpapers/cabin-3.png differ diff --git a/Wallpapers/cabin-4.png b/Wallpapers/cabin-4.png new file mode 100644 index 0000000..299eefb Binary files /dev/null and b/Wallpapers/cabin-4.png differ diff --git a/Wallpapers/cabin.png b/Wallpapers/cabin.png new file mode 100644 index 0000000..8a0bdcb Binary files /dev/null and b/Wallpapers/cabin.png differ diff --git a/Wallpapers/call-it-a-day.jpg b/Wallpapers/call-it-a-day.jpg new file mode 100644 index 0000000..791d541 Binary files /dev/null and b/Wallpapers/call-it-a-day.jpg differ diff --git a/Wallpapers/car-1.png b/Wallpapers/car-1.png new file mode 100644 index 0000000..b58eeb9 Binary files /dev/null and b/Wallpapers/car-1.png differ diff --git a/Wallpapers/car-wreck.png b/Wallpapers/car-wreck.png new file mode 100644 index 0000000..07e6a13 Binary files /dev/null and b/Wallpapers/car-wreck.png differ diff --git a/Wallpapers/cartoon-castle.png b/Wallpapers/cartoon-castle.png new file mode 100644 index 0000000..f741e1a Binary files /dev/null and b/Wallpapers/cartoon-castle.png differ diff --git a/Wallpapers/castle.png b/Wallpapers/castle.png new file mode 100644 index 0000000..a37f90a Binary files /dev/null and b/Wallpapers/castle.png differ diff --git a/Wallpapers/cat-in-clouds.png b/Wallpapers/cat-in-clouds.png new file mode 100644 index 0000000..2af3593 Binary files /dev/null and b/Wallpapers/cat-in-clouds.png differ diff --git a/Wallpapers/cat-street.jpg b/Wallpapers/cat-street.jpg new file mode 100644 index 0000000..86359cf Binary files /dev/null and b/Wallpapers/cat-street.jpg differ diff --git a/Wallpapers/cat-vibin.png b/Wallpapers/cat-vibin.png new file mode 100644 index 0000000..4fa67ad Binary files /dev/null and b/Wallpapers/cat-vibin.png differ diff --git a/Wallpapers/cat_leaves.png b/Wallpapers/cat_leaves.png new file mode 100644 index 0000000..ace8c2c Binary files /dev/null and b/Wallpapers/cat_leaves.png differ diff --git a/Wallpapers/cat_pacman.png b/Wallpapers/cat_pacman.png new file mode 100644 index 0000000..cf5807a Binary files /dev/null and b/Wallpapers/cat_pacman.png differ diff --git a/Wallpapers/chess-gate.jpeg b/Wallpapers/chess-gate.jpeg new file mode 100644 index 0000000..3e1ac9c Binary files /dev/null and b/Wallpapers/chess-gate.jpeg differ diff --git a/Wallpapers/city-harbor.png b/Wallpapers/city-harbor.png new file mode 100644 index 0000000..7603c86 Binary files /dev/null and b/Wallpapers/city-harbor.png differ diff --git a/Wallpapers/city-horizon.jpg b/Wallpapers/city-horizon.jpg new file mode 100644 index 0000000..0836f1d Binary files /dev/null and b/Wallpapers/city-horizon.jpg differ diff --git a/Wallpapers/city-on-water.jpg b/Wallpapers/city-on-water.jpg new file mode 100644 index 0000000..c1caef0 Binary files /dev/null and b/Wallpapers/city-on-water.jpg differ diff --git a/Wallpapers/city.png b/Wallpapers/city.png new file mode 100644 index 0000000..a3ffe31 Binary files /dev/null and b/Wallpapers/city.png differ diff --git a/Wallpapers/clearing.png b/Wallpapers/clearing.png new file mode 100644 index 0000000..8bde1c4 Binary files /dev/null and b/Wallpapers/clearing.png differ diff --git a/Wallpapers/cliff-path.jpg b/Wallpapers/cliff-path.jpg new file mode 100644 index 0000000..68f3e62 Binary files /dev/null and b/Wallpapers/cliff-path.jpg differ diff --git a/Wallpapers/cloud-coffee.jpg b/Wallpapers/cloud-coffee.jpg new file mode 100644 index 0000000..fd6c16a Binary files /dev/null and b/Wallpapers/cloud-coffee.jpg differ diff --git a/Wallpapers/clouds-2.png b/Wallpapers/clouds-2.png new file mode 100644 index 0000000..0c46d2c Binary files /dev/null and b/Wallpapers/clouds-2.png differ diff --git a/Wallpapers/clouds-3.jpg b/Wallpapers/clouds-3.jpg new file mode 100644 index 0000000..244f271 Binary files /dev/null and b/Wallpapers/clouds-3.jpg differ diff --git a/Wallpapers/clouds-3.png b/Wallpapers/clouds-3.png new file mode 100644 index 0000000..849af8f Binary files /dev/null and b/Wallpapers/clouds-3.png differ diff --git a/Wallpapers/clouds-5.jpg b/Wallpapers/clouds-5.jpg new file mode 100644 index 0000000..ca0c3b1 Binary files /dev/null and b/Wallpapers/clouds-5.jpg differ diff --git a/Wallpapers/clouds.png b/Wallpapers/clouds.png new file mode 100644 index 0000000..a7d29ba Binary files /dev/null and b/Wallpapers/clouds.png differ diff --git a/Wallpapers/coffee-shop.png b/Wallpapers/coffee-shop.png new file mode 100644 index 0000000..0dd858e Binary files /dev/null and b/Wallpapers/coffee-shop.png differ diff --git a/Wallpapers/cold-alley.png b/Wallpapers/cold-alley.png new file mode 100644 index 0000000..80e1498 Binary files /dev/null and b/Wallpapers/cold-alley.png differ diff --git a/Wallpapers/compass.jpg b/Wallpapers/compass.jpg new file mode 100644 index 0000000..12bf70c Binary files /dev/null and b/Wallpapers/compass.jpg differ diff --git a/Wallpapers/cool.jpg b/Wallpapers/cool.jpg new file mode 100644 index 0000000..a422590 Binary files /dev/null and b/Wallpapers/cool.jpg differ diff --git a/Wallpapers/corals-fish-underwater.jpg b/Wallpapers/corals-fish-underwater.jpg new file mode 100644 index 0000000..46c7a51 Binary files /dev/null and b/Wallpapers/corals-fish-underwater.jpg differ diff --git a/Wallpapers/cottages-river.png b/Wallpapers/cottages-river.png new file mode 100644 index 0000000..cf345c2 Binary files /dev/null and b/Wallpapers/cottages-river.png differ diff --git a/Wallpapers/crane.png b/Wallpapers/crane.png new file mode 100644 index 0000000..0772387 Binary files /dev/null and b/Wallpapers/crane.png differ diff --git a/Wallpapers/danbo.jpg b/Wallpapers/danbo.jpg new file mode 100644 index 0000000..d8ba600 Binary files /dev/null and b/Wallpapers/danbo.jpg differ diff --git a/Wallpapers/dark-forest.jpg b/Wallpapers/dark-forest.jpg new file mode 100644 index 0000000..e6a61e7 Binary files /dev/null and b/Wallpapers/dark-forest.jpg differ diff --git a/Wallpapers/dark-star.jpg b/Wallpapers/dark-star.jpg new file mode 100644 index 0000000..e3c9c87 Binary files /dev/null and b/Wallpapers/dark-star.jpg differ diff --git a/Wallpapers/dark-waves.jpg b/Wallpapers/dark-waves.jpg new file mode 100644 index 0000000..457ed3f Binary files /dev/null and b/Wallpapers/dark-waves.jpg differ diff --git a/Wallpapers/day-forest-path.png b/Wallpapers/day-forest-path.png new file mode 100644 index 0000000..6d33bd7 Binary files /dev/null and b/Wallpapers/day-forest-path.png differ diff --git a/Wallpapers/deer-glade.jpg b/Wallpapers/deer-glade.jpg new file mode 100644 index 0000000..4e06e74 Binary files /dev/null and b/Wallpapers/deer-glade.jpg differ diff --git a/Wallpapers/degirled.png b/Wallpapers/degirled.png new file mode 100644 index 0000000..b1a0942 Binary files /dev/null and b/Wallpapers/degirled.png differ diff --git a/Wallpapers/desolate-city-2.jpg b/Wallpapers/desolate-city-2.jpg new file mode 100644 index 0000000..ffed9df Binary files /dev/null and b/Wallpapers/desolate-city-2.jpg differ diff --git a/Wallpapers/desolate-city.jpg b/Wallpapers/desolate-city.jpg new file mode 100644 index 0000000..6146b07 Binary files /dev/null and b/Wallpapers/desolate-city.jpg differ diff --git a/Wallpapers/diner-lonely-road.jpg b/Wallpapers/diner-lonely-road.jpg new file mode 100644 index 0000000..18c9ddf Binary files /dev/null and b/Wallpapers/diner-lonely-road.jpg differ diff --git a/Wallpapers/dino.jpg b/Wallpapers/dino.jpg new file mode 100644 index 0000000..11a00c5 Binary files /dev/null and b/Wallpapers/dino.jpg differ diff --git a/Wallpapers/disco.png b/Wallpapers/disco.png new file mode 100644 index 0000000..5bfc026 Binary files /dev/null and b/Wallpapers/disco.png differ diff --git a/Wallpapers/dominik-mayer-1.jpg b/Wallpapers/dominik-mayer-1.jpg new file mode 100644 index 0000000..6a4d0e7 Binary files /dev/null and b/Wallpapers/dominik-mayer-1.jpg differ diff --git a/Wallpapers/dominik-mayer-10.jpg b/Wallpapers/dominik-mayer-10.jpg new file mode 100644 index 0000000..578076a Binary files /dev/null and b/Wallpapers/dominik-mayer-10.jpg differ diff --git a/Wallpapers/dominik-mayer-11.jpg b/Wallpapers/dominik-mayer-11.jpg new file mode 100644 index 0000000..a14dc3a Binary files /dev/null and b/Wallpapers/dominik-mayer-11.jpg differ diff --git a/Wallpapers/dominik-mayer-12.jpg b/Wallpapers/dominik-mayer-12.jpg new file mode 100644 index 0000000..5373c40 Binary files /dev/null and b/Wallpapers/dominik-mayer-12.jpg differ diff --git a/Wallpapers/dominik-mayer-13.jpg b/Wallpapers/dominik-mayer-13.jpg new file mode 100644 index 0000000..25558b4 Binary files /dev/null and b/Wallpapers/dominik-mayer-13.jpg differ diff --git a/Wallpapers/dominik-mayer-14.jpg b/Wallpapers/dominik-mayer-14.jpg new file mode 100644 index 0000000..690b396 Binary files /dev/null and b/Wallpapers/dominik-mayer-14.jpg differ diff --git a/Wallpapers/dominik-mayer-15.jpg b/Wallpapers/dominik-mayer-15.jpg new file mode 100644 index 0000000..a40dbd1 Binary files /dev/null and b/Wallpapers/dominik-mayer-15.jpg differ diff --git a/Wallpapers/dominik-mayer-16.jpg b/Wallpapers/dominik-mayer-16.jpg new file mode 100644 index 0000000..fb3f9de Binary files /dev/null and b/Wallpapers/dominik-mayer-16.jpg differ diff --git a/Wallpapers/dominik-mayer-17.jpg b/Wallpapers/dominik-mayer-17.jpg new file mode 100644 index 0000000..51902f6 Binary files /dev/null and b/Wallpapers/dominik-mayer-17.jpg differ diff --git a/Wallpapers/dominik-mayer-18.png b/Wallpapers/dominik-mayer-18.png new file mode 100644 index 0000000..6d64595 Binary files /dev/null and b/Wallpapers/dominik-mayer-18.png differ diff --git a/Wallpapers/dominik-mayer-19.jpg b/Wallpapers/dominik-mayer-19.jpg new file mode 100644 index 0000000..925e0b5 Binary files /dev/null and b/Wallpapers/dominik-mayer-19.jpg differ diff --git a/Wallpapers/dominik-mayer-2.jpg b/Wallpapers/dominik-mayer-2.jpg new file mode 100644 index 0000000..8c77b8e Binary files /dev/null and b/Wallpapers/dominik-mayer-2.jpg differ diff --git a/Wallpapers/dominik-mayer-20.jpg b/Wallpapers/dominik-mayer-20.jpg new file mode 100644 index 0000000..46e5545 Binary files /dev/null and b/Wallpapers/dominik-mayer-20.jpg differ diff --git a/Wallpapers/dominik-mayer-21.jpg b/Wallpapers/dominik-mayer-21.jpg new file mode 100644 index 0000000..d7e2f43 Binary files /dev/null and b/Wallpapers/dominik-mayer-21.jpg differ diff --git a/Wallpapers/dominik-mayer-22.jpg b/Wallpapers/dominik-mayer-22.jpg new file mode 100644 index 0000000..14823a7 Binary files /dev/null and b/Wallpapers/dominik-mayer-22.jpg differ diff --git a/Wallpapers/dominik-mayer-23.jpg b/Wallpapers/dominik-mayer-23.jpg new file mode 100644 index 0000000..ad2058d Binary files /dev/null and b/Wallpapers/dominik-mayer-23.jpg differ diff --git a/Wallpapers/dominik-mayer-24.jpg b/Wallpapers/dominik-mayer-24.jpg new file mode 100644 index 0000000..c92c0a5 Binary files /dev/null and b/Wallpapers/dominik-mayer-24.jpg differ diff --git a/Wallpapers/dominik-mayer-25.jpg b/Wallpapers/dominik-mayer-25.jpg new file mode 100644 index 0000000..1d54f77 Binary files /dev/null and b/Wallpapers/dominik-mayer-25.jpg differ diff --git a/Wallpapers/dominik-mayer-26.jpg b/Wallpapers/dominik-mayer-26.jpg new file mode 100644 index 0000000..2baf064 Binary files /dev/null and b/Wallpapers/dominik-mayer-26.jpg differ diff --git a/Wallpapers/dominik-mayer-4.jpg b/Wallpapers/dominik-mayer-4.jpg new file mode 100644 index 0000000..9f94a58 Binary files /dev/null and b/Wallpapers/dominik-mayer-4.jpg differ diff --git a/Wallpapers/dominik-mayer-5.jpg b/Wallpapers/dominik-mayer-5.jpg new file mode 100644 index 0000000..5cc38e2 Binary files /dev/null and b/Wallpapers/dominik-mayer-5.jpg differ diff --git a/Wallpapers/dominik-mayer-6.jpg b/Wallpapers/dominik-mayer-6.jpg new file mode 100644 index 0000000..c44f005 Binary files /dev/null and b/Wallpapers/dominik-mayer-6.jpg differ diff --git a/Wallpapers/dominik-mayer-7.jpg b/Wallpapers/dominik-mayer-7.jpg new file mode 100644 index 0000000..88a7598 Binary files /dev/null and b/Wallpapers/dominik-mayer-7.jpg differ diff --git a/Wallpapers/dominik-mayer-8.jpg b/Wallpapers/dominik-mayer-8.jpg new file mode 100644 index 0000000..37e4323 Binary files /dev/null and b/Wallpapers/dominik-mayer-8.jpg differ diff --git a/Wallpapers/dominik-mayer-9.jpg b/Wallpapers/dominik-mayer-9.jpg new file mode 100644 index 0000000..a1fe5c9 Binary files /dev/null and b/Wallpapers/dominik-mayer-9.jpg differ diff --git a/Wallpapers/dragon.jpg b/Wallpapers/dragon.jpg new file mode 100644 index 0000000..10e226a Binary files /dev/null and b/Wallpapers/dragon.jpg differ diff --git a/Wallpapers/droplets.png b/Wallpapers/droplets.png new file mode 100644 index 0000000..062b688 Binary files /dev/null and b/Wallpapers/droplets.png differ diff --git a/Wallpapers/dwarf-saber.jpg b/Wallpapers/dwarf-saber.jpg new file mode 100644 index 0000000..435a54b Binary files /dev/null and b/Wallpapers/dwarf-saber.jpg differ diff --git a/Wallpapers/eclipse.jpg b/Wallpapers/eclipse.jpg new file mode 100644 index 0000000..4a8ea7d Binary files /dev/null and b/Wallpapers/eclipse.jpg differ diff --git a/Wallpapers/excalibur-lake.jpg b/Wallpapers/excalibur-lake.jpg new file mode 100644 index 0000000..eb9287f Binary files /dev/null and b/Wallpapers/excalibur-lake.jpg differ diff --git a/Wallpapers/fantasy-city.jpg b/Wallpapers/fantasy-city.jpg new file mode 100644 index 0000000..8aa654b Binary files /dev/null and b/Wallpapers/fantasy-city.jpg differ diff --git a/Wallpapers/fight.jpg b/Wallpapers/fight.jpg new file mode 100644 index 0000000..8f9550b Binary files /dev/null and b/Wallpapers/fight.jpg differ diff --git a/Wallpapers/fishing.jpg b/Wallpapers/fishing.jpg new file mode 100644 index 0000000..fd7af19 Binary files /dev/null and b/Wallpapers/fishing.jpg differ diff --git a/Wallpapers/flower-branch.png b/Wallpapers/flower-branch.png new file mode 100644 index 0000000..5f07136 Binary files /dev/null and b/Wallpapers/flower-branch.png differ diff --git a/Wallpapers/flower-field-2.png b/Wallpapers/flower-field-2.png new file mode 100644 index 0000000..b8e44e9 Binary files /dev/null and b/Wallpapers/flower-field-2.png differ diff --git a/Wallpapers/flower-field-3.png b/Wallpapers/flower-field-3.png new file mode 100644 index 0000000..f4d973e Binary files /dev/null and b/Wallpapers/flower-field-3.png differ diff --git a/Wallpapers/flower-field.jpg b/Wallpapers/flower-field.jpg new file mode 100644 index 0000000..e2b930b Binary files /dev/null and b/Wallpapers/flower-field.jpg differ diff --git a/Wallpapers/flower.jpg b/Wallpapers/flower.jpg new file mode 100644 index 0000000..281de49 Binary files /dev/null and b/Wallpapers/flower.jpg differ diff --git a/Wallpapers/flowering-rain.png b/Wallpapers/flowering-rain.png new file mode 100644 index 0000000..22ab753 Binary files /dev/null and b/Wallpapers/flowering-rain.png differ diff --git a/Wallpapers/flowers-1.jpg b/Wallpapers/flowers-1.jpg new file mode 100644 index 0000000..1f7639d Binary files /dev/null and b/Wallpapers/flowers-1.jpg differ diff --git a/Wallpapers/flowers-10.jpg b/Wallpapers/flowers-10.jpg new file mode 100644 index 0000000..c40062c Binary files /dev/null and b/Wallpapers/flowers-10.jpg differ diff --git a/Wallpapers/flowers-11.jpg b/Wallpapers/flowers-11.jpg new file mode 100644 index 0000000..c360566 Binary files /dev/null and b/Wallpapers/flowers-11.jpg differ diff --git a/Wallpapers/flowers-12.jpg b/Wallpapers/flowers-12.jpg new file mode 100644 index 0000000..96369dd Binary files /dev/null and b/Wallpapers/flowers-12.jpg differ diff --git a/Wallpapers/flowers-13.jpg b/Wallpapers/flowers-13.jpg new file mode 100644 index 0000000..0fc1125 Binary files /dev/null and b/Wallpapers/flowers-13.jpg differ diff --git a/Wallpapers/flowers-14.jpg b/Wallpapers/flowers-14.jpg new file mode 100644 index 0000000..b61c41d Binary files /dev/null and b/Wallpapers/flowers-14.jpg differ diff --git a/Wallpapers/flowers-15.jpg b/Wallpapers/flowers-15.jpg new file mode 100644 index 0000000..9fa1035 Binary files /dev/null and b/Wallpapers/flowers-15.jpg differ diff --git a/Wallpapers/flowers-16.jpg b/Wallpapers/flowers-16.jpg new file mode 100644 index 0000000..fb8c57e Binary files /dev/null and b/Wallpapers/flowers-16.jpg differ diff --git a/Wallpapers/flowers-17.png b/Wallpapers/flowers-17.png new file mode 100644 index 0000000..af78ab4 Binary files /dev/null and b/Wallpapers/flowers-17.png differ diff --git a/Wallpapers/flowers-18.jpg b/Wallpapers/flowers-18.jpg new file mode 100644 index 0000000..8b95eb9 Binary files /dev/null and b/Wallpapers/flowers-18.jpg differ diff --git a/Wallpapers/flowers-19.jpg b/Wallpapers/flowers-19.jpg new file mode 100644 index 0000000..2586e9b Binary files /dev/null and b/Wallpapers/flowers-19.jpg differ diff --git a/Wallpapers/flowers-2.jpg b/Wallpapers/flowers-2.jpg new file mode 100644 index 0000000..c487bc6 Binary files /dev/null and b/Wallpapers/flowers-2.jpg differ diff --git a/Wallpapers/flowers-20.jpg b/Wallpapers/flowers-20.jpg new file mode 100644 index 0000000..eaad502 Binary files /dev/null and b/Wallpapers/flowers-20.jpg differ diff --git a/Wallpapers/flowers-21.png b/Wallpapers/flowers-21.png new file mode 100644 index 0000000..3899ee8 Binary files /dev/null and b/Wallpapers/flowers-21.png differ diff --git a/Wallpapers/flowers-3.jpg b/Wallpapers/flowers-3.jpg new file mode 100644 index 0000000..4d9a0fd Binary files /dev/null and b/Wallpapers/flowers-3.jpg differ diff --git a/Wallpapers/flowers-4.jpg b/Wallpapers/flowers-4.jpg new file mode 100644 index 0000000..703a904 Binary files /dev/null and b/Wallpapers/flowers-4.jpg differ diff --git a/Wallpapers/flowers-5.jpg b/Wallpapers/flowers-5.jpg new file mode 100644 index 0000000..6ce7082 Binary files /dev/null and b/Wallpapers/flowers-5.jpg differ diff --git a/Wallpapers/flowers-6.jpg b/Wallpapers/flowers-6.jpg new file mode 100644 index 0000000..6906126 Binary files /dev/null and b/Wallpapers/flowers-6.jpg differ diff --git a/Wallpapers/flowers-7.jpg b/Wallpapers/flowers-7.jpg new file mode 100644 index 0000000..5022210 Binary files /dev/null and b/Wallpapers/flowers-7.jpg differ diff --git a/Wallpapers/flowers-8.jpg b/Wallpapers/flowers-8.jpg new file mode 100644 index 0000000..84fb0f9 Binary files /dev/null and b/Wallpapers/flowers-8.jpg differ diff --git a/Wallpapers/flowers-9.jpg b/Wallpapers/flowers-9.jpg new file mode 100644 index 0000000..822b1b4 Binary files /dev/null and b/Wallpapers/flowers-9.jpg differ diff --git a/Wallpapers/flying-boat.jpg b/Wallpapers/flying-boat.jpg new file mode 100644 index 0000000..dfc31c4 Binary files /dev/null and b/Wallpapers/flying-boat.jpg differ diff --git a/Wallpapers/flying-comets-clouds.jpg b/Wallpapers/flying-comets-clouds.jpg new file mode 100644 index 0000000..1eec231 Binary files /dev/null and b/Wallpapers/flying-comets-clouds.jpg differ diff --git a/Wallpapers/foggy-city.jpg b/Wallpapers/foggy-city.jpg new file mode 100644 index 0000000..6dfd54a Binary files /dev/null and b/Wallpapers/foggy-city.jpg differ diff --git a/Wallpapers/fox.png b/Wallpapers/fox.png new file mode 100644 index 0000000..937b5c8 Binary files /dev/null and b/Wallpapers/fox.png differ diff --git a/Wallpapers/fumo-fumo.jpg b/Wallpapers/fumo-fumo.jpg new file mode 100644 index 0000000..12ba1ef Binary files /dev/null and b/Wallpapers/fumo-fumo.jpg differ diff --git a/Wallpapers/galaxy-waves.jpg b/Wallpapers/galaxy-waves.jpg new file mode 100644 index 0000000..e610513 Binary files /dev/null and b/Wallpapers/galaxy-waves.jpg differ diff --git a/Wallpapers/genshin-landscape.png b/Wallpapers/genshin-landscape.png new file mode 100644 index 0000000..848934f Binary files /dev/null and b/Wallpapers/genshin-landscape.png differ diff --git a/Wallpapers/gentlemen-sunset.png b/Wallpapers/gentlemen-sunset.png new file mode 100644 index 0000000..8923383 Binary files /dev/null and b/Wallpapers/gentlemen-sunset.png differ diff --git a/Wallpapers/gingerbread-house.jpg b/Wallpapers/gingerbread-house.jpg new file mode 100644 index 0000000..376e27e Binary files /dev/null and b/Wallpapers/gingerbread-house.jpg differ diff --git a/Wallpapers/girl-stars.png b/Wallpapers/girl-stars.png new file mode 100644 index 0000000..18df612 Binary files /dev/null and b/Wallpapers/girl-stars.png differ diff --git a/Wallpapers/grandfather-tree.jpg b/Wallpapers/grandfather-tree.jpg new file mode 100644 index 0000000..449dbe6 Binary files /dev/null and b/Wallpapers/grandfather-tree.jpg differ diff --git a/Wallpapers/grassy-well.jpg b/Wallpapers/grassy-well.jpg new file mode 100644 index 0000000..8200181 Binary files /dev/null and b/Wallpapers/grassy-well.jpg differ diff --git a/Wallpapers/green-bridge.jpg b/Wallpapers/green-bridge.jpg new file mode 100644 index 0000000..8dd75c7 Binary files /dev/null and b/Wallpapers/green-bridge.jpg differ diff --git a/Wallpapers/greenbus.jpg b/Wallpapers/greenbus.jpg new file mode 100644 index 0000000..db3435c Binary files /dev/null and b/Wallpapers/greenbus.jpg differ diff --git a/Wallpapers/harbor-3.png b/Wallpapers/harbor-3.png new file mode 100644 index 0000000..424e51f Binary files /dev/null and b/Wallpapers/harbor-3.png differ diff --git a/Wallpapers/harbor.jpg b/Wallpapers/harbor.jpg new file mode 100644 index 0000000..6b08927 Binary files /dev/null and b/Wallpapers/harbor.jpg differ diff --git a/Wallpapers/harmony.png b/Wallpapers/harmony.png new file mode 100644 index 0000000..a9cac3f Binary files /dev/null and b/Wallpapers/harmony.png differ diff --git a/Wallpapers/haunted-house.jpg b/Wallpapers/haunted-house.jpg new file mode 100644 index 0000000..62f3c0d Binary files /dev/null and b/Wallpapers/haunted-house.jpg differ diff --git a/Wallpapers/hollow-knight.jpg b/Wallpapers/hollow-knight.jpg new file mode 100644 index 0000000..7c325c8 Binary files /dev/null and b/Wallpapers/hollow-knight.jpg differ diff --git a/Wallpapers/hollow-knight.png b/Wallpapers/hollow-knight.png new file mode 100644 index 0000000..470daa3 Binary files /dev/null and b/Wallpapers/hollow-knight.png differ diff --git a/Wallpapers/hollow.jpg b/Wallpapers/hollow.jpg new file mode 100644 index 0000000..9a66c11 Binary files /dev/null and b/Wallpapers/hollow.jpg differ diff --git a/Wallpapers/horizon-2.jpg b/Wallpapers/horizon-2.jpg new file mode 100644 index 0000000..d561197 Binary files /dev/null and b/Wallpapers/horizon-2.jpg differ diff --git a/Wallpapers/horizon.jpg b/Wallpapers/horizon.jpg new file mode 100644 index 0000000..6389e55 Binary files /dev/null and b/Wallpapers/horizon.jpg differ diff --git a/Wallpapers/i-touch-this.jpg b/Wallpapers/i-touch-this.jpg new file mode 100644 index 0000000..aad88c5 Binary files /dev/null and b/Wallpapers/i-touch-this.jpg differ diff --git a/Wallpapers/ice-cream.jpg b/Wallpapers/ice-cream.jpg new file mode 100644 index 0000000..795013f Binary files /dev/null and b/Wallpapers/ice-cream.jpg differ diff --git a/Wallpapers/idk-tbh.png b/Wallpapers/idk-tbh.png new file mode 100644 index 0000000..b3349f8 Binary files /dev/null and b/Wallpapers/idk-tbh.png differ diff --git a/Wallpapers/isekai.jpg b/Wallpapers/isekai.jpg new file mode 100644 index 0000000..2243141 Binary files /dev/null and b/Wallpapers/isekai.jpg differ diff --git a/Wallpapers/japan-alley.png b/Wallpapers/japan-alley.png new file mode 100644 index 0000000..d45f986 Binary files /dev/null and b/Wallpapers/japan-alley.png differ diff --git a/Wallpapers/jellyfish.jpg b/Wallpapers/jellyfish.jpg new file mode 100644 index 0000000..b5dfb35 Binary files /dev/null and b/Wallpapers/jellyfish.jpg differ diff --git a/Wallpapers/jupiter.png b/Wallpapers/jupiter.png new file mode 100644 index 0000000..5cd26fb Binary files /dev/null and b/Wallpapers/jupiter.png differ diff --git a/Wallpapers/kaiju.png b/Wallpapers/kaiju.png new file mode 100644 index 0000000..2c4c644 Binary files /dev/null and b/Wallpapers/kaiju.png differ diff --git a/Wallpapers/keyboard-2.png b/Wallpapers/keyboard-2.png new file mode 100644 index 0000000..3338900 Binary files /dev/null and b/Wallpapers/keyboard-2.png differ diff --git a/Wallpapers/keyboard.png b/Wallpapers/keyboard.png new file mode 100644 index 0000000..68538be Binary files /dev/null and b/Wallpapers/keyboard.png differ diff --git a/Wallpapers/kfc.jpg b/Wallpapers/kfc.jpg new file mode 100644 index 0000000..36e7fbc Binary files /dev/null and b/Wallpapers/kfc.jpg differ diff --git a/Wallpapers/kitchen.png b/Wallpapers/kitchen.png new file mode 100644 index 0000000..c558143 Binary files /dev/null and b/Wallpapers/kitchen.png differ diff --git a/Wallpapers/kitty.jpg b/Wallpapers/kitty.jpg new file mode 100644 index 0000000..97c11fd Binary files /dev/null and b/Wallpapers/kitty.jpg differ diff --git a/Wallpapers/kiwis.jpg b/Wallpapers/kiwis.jpg new file mode 100644 index 0000000..64a3f59 Binary files /dev/null and b/Wallpapers/kiwis.jpg differ diff --git a/Wallpapers/knight-building.png b/Wallpapers/knight-building.png new file mode 100644 index 0000000..8f96c0d Binary files /dev/null and b/Wallpapers/knight-building.png differ diff --git a/Wallpapers/knight-sit.png b/Wallpapers/knight-sit.png new file mode 100644 index 0000000..e551780 Binary files /dev/null and b/Wallpapers/knight-sit.png differ diff --git a/Wallpapers/knight-templar.jpg b/Wallpapers/knight-templar.jpg new file mode 100644 index 0000000..0bbe9df Binary files /dev/null and b/Wallpapers/knight-templar.jpg differ diff --git a/Wallpapers/knights-radiant.jpg b/Wallpapers/knights-radiant.jpg new file mode 100644 index 0000000..a600a09 Binary files /dev/null and b/Wallpapers/knights-radiant.jpg differ diff --git a/Wallpapers/koi.jpg b/Wallpapers/koi.jpg new file mode 100644 index 0000000..2021eb0 Binary files /dev/null and b/Wallpapers/koi.jpg differ diff --git a/Wallpapers/koishi.jpg b/Wallpapers/koishi.jpg new file mode 100644 index 0000000..9c795cc Binary files /dev/null and b/Wallpapers/koishi.jpg differ diff --git a/Wallpapers/kusuriya.png b/Wallpapers/kusuriya.png new file mode 100644 index 0000000..9c0f156 Binary files /dev/null and b/Wallpapers/kusuriya.png differ diff --git a/Wallpapers/lantern-light-room.png b/Wallpapers/lantern-light-room.png new file mode 100644 index 0000000..c60eb8e Binary files /dev/null and b/Wallpapers/lantern-light-room.png differ diff --git a/Wallpapers/laundry.jpg b/Wallpapers/laundry.jpg new file mode 100644 index 0000000..b7eb438 Binary files /dev/null and b/Wallpapers/laundry.jpg differ diff --git a/Wallpapers/lightbulbs.jpg b/Wallpapers/lightbulbs.jpg new file mode 100644 index 0000000..64651ce Binary files /dev/null and b/Wallpapers/lightbulbs.jpg differ diff --git a/Wallpapers/lighthouse-2.png b/Wallpapers/lighthouse-2.png new file mode 100644 index 0000000..b514fe5 Binary files /dev/null and b/Wallpapers/lighthouse-2.png differ diff --git a/Wallpapers/lighthouse.jpg b/Wallpapers/lighthouse.jpg new file mode 100644 index 0000000..c6253d2 Binary files /dev/null and b/Wallpapers/lighthouse.jpg differ diff --git a/Wallpapers/link-click-1.png b/Wallpapers/link-click-1.png new file mode 100644 index 0000000..4e2f334 Binary files /dev/null and b/Wallpapers/link-click-1.png differ diff --git a/Wallpapers/lit-up-sky.png b/Wallpapers/lit-up-sky.png new file mode 100644 index 0000000..e1bc38a Binary files /dev/null and b/Wallpapers/lit-up-sky.png differ diff --git a/Wallpapers/lovely-summer.jpg b/Wallpapers/lovely-summer.jpg new file mode 100644 index 0000000..09248f4 Binary files /dev/null and b/Wallpapers/lovely-summer.jpg differ diff --git a/Wallpapers/mage.jpg b/Wallpapers/mage.jpg new file mode 100644 index 0000000..0548554 Binary files /dev/null and b/Wallpapers/mage.jpg differ diff --git a/Wallpapers/main-street.png b/Wallpapers/main-street.png new file mode 100644 index 0000000..95a161e Binary files /dev/null and b/Wallpapers/main-street.png differ diff --git a/Wallpapers/maji-no-tabitabi-2.jpg b/Wallpapers/maji-no-tabitabi-2.jpg new file mode 100644 index 0000000..f4b98be Binary files /dev/null and b/Wallpapers/maji-no-tabitabi-2.jpg differ diff --git a/Wallpapers/maji-no-tabitabi-3.jpg b/Wallpapers/maji-no-tabitabi-3.jpg new file mode 100644 index 0000000..4fca87e Binary files /dev/null and b/Wallpapers/maji-no-tabitabi-3.jpg differ diff --git a/Wallpapers/majo-no-tabitabi.jpg b/Wallpapers/majo-no-tabitabi.jpg new file mode 100644 index 0000000..9c6d01a Binary files /dev/null and b/Wallpapers/majo-no-tabitabi.jpg differ diff --git a/Wallpapers/map.png b/Wallpapers/map.png new file mode 100644 index 0000000..c6263ca Binary files /dev/null and b/Wallpapers/map.png differ diff --git a/Wallpapers/marine-tunnel.jpg b/Wallpapers/marine-tunnel.jpg new file mode 100644 index 0000000..a98e5c9 Binary files /dev/null and b/Wallpapers/marine-tunnel.jpg differ diff --git a/Wallpapers/math.png b/Wallpapers/math.png new file mode 100644 index 0000000..ae0fde2 Binary files /dev/null and b/Wallpapers/math.png differ diff --git a/Wallpapers/minimalist-black-hole.png b/Wallpapers/minimalist-black-hole.png new file mode 100644 index 0000000..4df9b54 Binary files /dev/null and b/Wallpapers/minimalist-black-hole.png differ diff --git a/Wallpapers/misty-boat.jpg b/Wallpapers/misty-boat.jpg new file mode 100644 index 0000000..926a8ea Binary files /dev/null and b/Wallpapers/misty-boat.jpg differ diff --git a/Wallpapers/moon-beach.png b/Wallpapers/moon-beach.png new file mode 100644 index 0000000..58bb437 Binary files /dev/null and b/Wallpapers/moon-beach.png differ diff --git a/Wallpapers/moscow.jpg b/Wallpapers/moscow.jpg new file mode 100644 index 0000000..ff573cc Binary files /dev/null and b/Wallpapers/moscow.jpg differ diff --git a/Wallpapers/mountain-range.jpg b/Wallpapers/mountain-range.jpg new file mode 100644 index 0000000..820771b Binary files /dev/null and b/Wallpapers/mountain-range.jpg differ diff --git a/Wallpapers/mushishi.jpg b/Wallpapers/mushishi.jpg new file mode 100644 index 0000000..7363f14 Binary files /dev/null and b/Wallpapers/mushishi.jpg differ diff --git a/Wallpapers/my-neighbor-totoro-sunflowers.png b/Wallpapers/my-neighbor-totoro-sunflowers.png new file mode 100644 index 0000000..9446b06 Binary files /dev/null and b/Wallpapers/my-neighbor-totoro-sunflowers.png differ diff --git a/Wallpapers/nature-valley-1.jpg b/Wallpapers/nature-valley-1.jpg new file mode 100644 index 0000000..25af34c Binary files /dev/null and b/Wallpapers/nature-valley-1.jpg differ diff --git a/Wallpapers/nature-valley-2.jpg b/Wallpapers/nature-valley-2.jpg new file mode 100644 index 0000000..fa6bcb6 Binary files /dev/null and b/Wallpapers/nature-valley-2.jpg differ diff --git a/Wallpapers/night-forest-path.png b/Wallpapers/night-forest-path.png new file mode 100644 index 0000000..2a871ad Binary files /dev/null and b/Wallpapers/night-forest-path.png differ diff --git a/Wallpapers/old-car.jpg b/Wallpapers/old-car.jpg new file mode 100644 index 0000000..e81dbdb Binary files /dev/null and b/Wallpapers/old-car.jpg differ diff --git a/Wallpapers/old-computer.png b/Wallpapers/old-computer.png new file mode 100644 index 0000000..251fd8c Binary files /dev/null and b/Wallpapers/old-computer.png differ diff --git a/Wallpapers/one-legged-herdazian.jpg b/Wallpapers/one-legged-herdazian.jpg new file mode 100644 index 0000000..ad0d7f1 Binary files /dev/null and b/Wallpapers/one-legged-herdazian.jpg differ diff --git a/Wallpapers/orange.jpg b/Wallpapers/orange.jpg new file mode 100644 index 0000000..0d73916 Binary files /dev/null and b/Wallpapers/orange.jpg differ diff --git a/Wallpapers/oranges.jpg b/Wallpapers/oranges.jpg new file mode 100644 index 0000000..ffdf212 Binary files /dev/null and b/Wallpapers/oranges.jpg differ diff --git a/Wallpapers/oversized-cat.jpg b/Wallpapers/oversized-cat.jpg new file mode 100644 index 0000000..d73dd74 Binary files /dev/null and b/Wallpapers/oversized-cat.jpg differ diff --git a/Wallpapers/paint.jpg b/Wallpapers/paint.jpg new file mode 100644 index 0000000..a8b3acc Binary files /dev/null and b/Wallpapers/paint.jpg differ diff --git a/Wallpapers/painting-standing.jpg b/Wallpapers/painting-standing.jpg new file mode 100644 index 0000000..0346f88 Binary files /dev/null and b/Wallpapers/painting-standing.jpg differ diff --git a/Wallpapers/painting.jpg b/Wallpapers/painting.jpg new file mode 100644 index 0000000..e5a9b0d Binary files /dev/null and b/Wallpapers/painting.jpg differ diff --git a/Wallpapers/panes.jpg b/Wallpapers/panes.jpg new file mode 100644 index 0000000..3622f79 Binary files /dev/null and b/Wallpapers/panes.jpg differ diff --git a/Wallpapers/pine.jpg b/Wallpapers/pine.jpg new file mode 100644 index 0000000..135fdea Binary files /dev/null and b/Wallpapers/pine.jpg differ diff --git a/Wallpapers/pink-clouds.jpg b/Wallpapers/pink-clouds.jpg new file mode 100644 index 0000000..6b45408 Binary files /dev/null and b/Wallpapers/pink-clouds.jpg differ diff --git a/Wallpapers/pistachio-tea.jpg b/Wallpapers/pistachio-tea.jpg new file mode 100644 index 0000000..556c784 Binary files /dev/null and b/Wallpapers/pistachio-tea.jpg differ diff --git a/Wallpapers/pitstop.png b/Wallpapers/pitstop.png new file mode 100644 index 0000000..0ed02fb Binary files /dev/null and b/Wallpapers/pitstop.png differ diff --git a/Wallpapers/pixel-alley.png b/Wallpapers/pixel-alley.png new file mode 100644 index 0000000..58cdba9 Binary files /dev/null and b/Wallpapers/pixel-alley.png differ diff --git a/Wallpapers/pixel-car.png b/Wallpapers/pixel-car.png new file mode 100644 index 0000000..dd09627 Binary files /dev/null and b/Wallpapers/pixel-car.png differ diff --git a/Wallpapers/pixel-castle.png b/Wallpapers/pixel-castle.png new file mode 100644 index 0000000..34f3246 Binary files /dev/null and b/Wallpapers/pixel-castle.png differ diff --git a/Wallpapers/pixel-earth.png b/Wallpapers/pixel-earth.png new file mode 100644 index 0000000..f2bb492 Binary files /dev/null and b/Wallpapers/pixel-earth.png differ diff --git a/Wallpapers/pixel-galaxy.png b/Wallpapers/pixel-galaxy.png new file mode 100644 index 0000000..25c6c0f Binary files /dev/null and b/Wallpapers/pixel-galaxy.png differ diff --git a/Wallpapers/pixel-napping.png b/Wallpapers/pixel-napping.png new file mode 100644 index 0000000..0dbdb9c Binary files /dev/null and b/Wallpapers/pixel-napping.png differ diff --git a/Wallpapers/pixel-planet.png b/Wallpapers/pixel-planet.png new file mode 100644 index 0000000..602a314 Binary files /dev/null and b/Wallpapers/pixel-planet.png differ diff --git a/Wallpapers/pixel-prairie.jpg b/Wallpapers/pixel-prairie.jpg new file mode 100644 index 0000000..fd62d3e Binary files /dev/null and b/Wallpapers/pixel-prairie.jpg differ diff --git a/Wallpapers/pixel-reading.png b/Wallpapers/pixel-reading.png new file mode 100644 index 0000000..c8321c7 Binary files /dev/null and b/Wallpapers/pixel-reading.png differ diff --git a/Wallpapers/pizza.jpg b/Wallpapers/pizza.jpg new file mode 100644 index 0000000..65b8fce Binary files /dev/null and b/Wallpapers/pizza.jpg differ diff --git a/Wallpapers/plane-purple.png b/Wallpapers/plane-purple.png new file mode 100644 index 0000000..c51f13d Binary files /dev/null and b/Wallpapers/plane-purple.png differ diff --git a/Wallpapers/platform.jpg b/Wallpapers/platform.jpg new file mode 100644 index 0000000..55971f2 Binary files /dev/null and b/Wallpapers/platform.jpg differ diff --git a/Wallpapers/pompeii.png b/Wallpapers/pompeii.png new file mode 100644 index 0000000..91d07c7 Binary files /dev/null and b/Wallpapers/pompeii.png differ diff --git a/Wallpapers/puffy-stars.jpg b/Wallpapers/puffy-stars.jpg new file mode 100644 index 0000000..09e4a69 Binary files /dev/null and b/Wallpapers/puffy-stars.jpg differ diff --git a/Wallpapers/purple-horizon.jpg b/Wallpapers/purple-horizon.jpg new file mode 100644 index 0000000..6c1c309 Binary files /dev/null and b/Wallpapers/purple-horizon.jpg differ diff --git a/Wallpapers/purpled-night.jpg b/Wallpapers/purpled-night.jpg new file mode 100644 index 0000000..27caee9 Binary files /dev/null and b/Wallpapers/purpled-night.jpg differ diff --git a/Wallpapers/railroad-2.jpg b/Wallpapers/railroad-2.jpg new file mode 100644 index 0000000..e004e9d Binary files /dev/null and b/Wallpapers/railroad-2.jpg differ diff --git a/Wallpapers/railroad-cat.png b/Wallpapers/railroad-cat.png new file mode 100644 index 0000000..8a673b3 Binary files /dev/null and b/Wallpapers/railroad-cat.png differ diff --git a/Wallpapers/railroad-flowers.jpg b/Wallpapers/railroad-flowers.jpg new file mode 100644 index 0000000..4002436 Binary files /dev/null and b/Wallpapers/railroad-flowers.jpg differ diff --git a/Wallpapers/railroad-horizon.png b/Wallpapers/railroad-horizon.png new file mode 100644 index 0000000..256918c Binary files /dev/null and b/Wallpapers/railroad-horizon.png differ diff --git a/Wallpapers/rainy-window.jpeg b/Wallpapers/rainy-window.jpeg new file mode 100644 index 0000000..c8193c9 Binary files /dev/null and b/Wallpapers/rainy-window.jpeg differ diff --git a/Wallpapers/red-city.png b/Wallpapers/red-city.png new file mode 100644 index 0000000..bf94d8f Binary files /dev/null and b/Wallpapers/red-city.png differ diff --git a/Wallpapers/result_3.png b/Wallpapers/result_3.png new file mode 100644 index 0000000..c5bb55e Binary files /dev/null and b/Wallpapers/result_3.png differ diff --git a/Wallpapers/retro2_live.gif b/Wallpapers/retro2_live.gif new file mode 100644 index 0000000..1735ec8 Binary files /dev/null and b/Wallpapers/retro2_live.gif differ diff --git a/Wallpapers/river-city.jpg b/Wallpapers/river-city.jpg new file mode 100644 index 0000000..efde162 Binary files /dev/null and b/Wallpapers/river-city.jpg differ diff --git a/Wallpapers/road.jpg b/Wallpapers/road.jpg new file mode 100644 index 0000000..4fb1b84 Binary files /dev/null and b/Wallpapers/road.jpg differ diff --git a/Wallpapers/rocket-launch.jpg b/Wallpapers/rocket-launch.jpg new file mode 100644 index 0000000..e3d21a6 Binary files /dev/null and b/Wallpapers/rocket-launch.jpg differ diff --git a/Wallpapers/rocket-schematics.jpg b/Wallpapers/rocket-schematics.jpg new file mode 100644 index 0000000..8a79f69 Binary files /dev/null and b/Wallpapers/rocket-schematics.jpg differ diff --git a/Wallpapers/rooftops.jpg b/Wallpapers/rooftops.jpg new file mode 100644 index 0000000..518e806 Binary files /dev/null and b/Wallpapers/rooftops.jpg differ diff --git a/Wallpapers/ruins.jpg b/Wallpapers/ruins.jpg new file mode 100644 index 0000000..c058c92 Binary files /dev/null and b/Wallpapers/ruins.jpg differ diff --git a/Wallpapers/sakura-aura.jpg b/Wallpapers/sakura-aura.jpg new file mode 100644 index 0000000..6c61e14 Binary files /dev/null and b/Wallpapers/sakura-aura.jpg differ diff --git a/Wallpapers/sakura-gate.jpg b/Wallpapers/sakura-gate.jpg new file mode 100644 index 0000000..553b10a Binary files /dev/null and b/Wallpapers/sakura-gate.jpg differ diff --git a/Wallpapers/sakura-trees-over-river.jpg b/Wallpapers/sakura-trees-over-river.jpg new file mode 100644 index 0000000..bfff533 Binary files /dev/null and b/Wallpapers/sakura-trees-over-river.jpg differ diff --git a/Wallpapers/salty-suburban.jpg b/Wallpapers/salty-suburban.jpg new file mode 100644 index 0000000..3f63648 Binary files /dev/null and b/Wallpapers/salty-suburban.jpg differ diff --git a/Wallpapers/samurai.jpg b/Wallpapers/samurai.jpg new file mode 100644 index 0000000..56e50e8 Binary files /dev/null and b/Wallpapers/samurai.jpg differ diff --git a/Wallpapers/satellite.png b/Wallpapers/satellite.png new file mode 100644 index 0000000..7c7979b Binary files /dev/null and b/Wallpapers/satellite.png differ diff --git a/Wallpapers/scifi.jpg b/Wallpapers/scifi.jpg new file mode 100644 index 0000000..2a899e2 Binary files /dev/null and b/Wallpapers/scifi.jpg differ diff --git a/Wallpapers/serenity.jpg b/Wallpapers/serenity.jpg new file mode 100644 index 0000000..b04354e Binary files /dev/null and b/Wallpapers/serenity.jpg differ diff --git a/Wallpapers/shadow-shape-holo.jpeg b/Wallpapers/shadow-shape-holo.jpeg new file mode 100644 index 0000000..369c193 Binary files /dev/null and b/Wallpapers/shadow-shape-holo.jpeg differ diff --git a/Wallpapers/ship-2.png b/Wallpapers/ship-2.png new file mode 100644 index 0000000..9e62b6b Binary files /dev/null and b/Wallpapers/ship-2.png differ diff --git a/Wallpapers/ship-3.jpg b/Wallpapers/ship-3.jpg new file mode 100644 index 0000000..85c0695 Binary files /dev/null and b/Wallpapers/ship-3.jpg differ diff --git a/Wallpapers/shrimp-fried-rice.jpg b/Wallpapers/shrimp-fried-rice.jpg new file mode 100644 index 0000000..9dabc34 Binary files /dev/null and b/Wallpapers/shrimp-fried-rice.jpg differ diff --git a/Wallpapers/signal-enthusiast.jpg b/Wallpapers/signal-enthusiast.jpg new file mode 100644 index 0000000..f052c13 Binary files /dev/null and b/Wallpapers/signal-enthusiast.jpg differ diff --git a/Wallpapers/sky.png b/Wallpapers/sky.png new file mode 100644 index 0000000..2c1e4c4 Binary files /dev/null and b/Wallpapers/sky.png differ diff --git a/Wallpapers/snowflakes.jpg b/Wallpapers/snowflakes.jpg new file mode 100644 index 0000000..33a9426 Binary files /dev/null and b/Wallpapers/snowflakes.jpg differ diff --git a/Wallpapers/snowy-map.png b/Wallpapers/snowy-map.png new file mode 100644 index 0000000..2403a74 Binary files /dev/null and b/Wallpapers/snowy-map.png differ diff --git a/Wallpapers/snowy-train.jpg b/Wallpapers/snowy-train.jpg new file mode 100644 index 0000000..0df1cba Binary files /dev/null and b/Wallpapers/snowy-train.jpg differ diff --git a/Wallpapers/soaring-off.jpg b/Wallpapers/soaring-off.jpg new file mode 100644 index 0000000..7f14b34 Binary files /dev/null and b/Wallpapers/soaring-off.jpg differ diff --git a/Wallpapers/soft-rose.jpg b/Wallpapers/soft-rose.jpg new file mode 100644 index 0000000..a4c26b4 Binary files /dev/null and b/Wallpapers/soft-rose.jpg differ diff --git a/Wallpapers/sousou-no-frieren-flowers.png b/Wallpapers/sousou-no-frieren-flowers.png new file mode 100644 index 0000000..f203b75 Binary files /dev/null and b/Wallpapers/sousou-no-frieren-flowers.png differ diff --git a/Wallpapers/south-pole.jpg b/Wallpapers/south-pole.jpg new file mode 100644 index 0000000..1b13860 Binary files /dev/null and b/Wallpapers/south-pole.jpg differ diff --git a/Wallpapers/space-piano.png b/Wallpapers/space-piano.png new file mode 100644 index 0000000..6386845 Binary files /dev/null and b/Wallpapers/space-piano.png differ diff --git a/Wallpapers/space.jpg b/Wallpapers/space.jpg new file mode 100644 index 0000000..4713b47 Binary files /dev/null and b/Wallpapers/space.jpg differ diff --git a/Wallpapers/space.png b/Wallpapers/space.png new file mode 100644 index 0000000..7839255 Binary files /dev/null and b/Wallpapers/space.png differ diff --git a/Wallpapers/square-city.jpg b/Wallpapers/square-city.jpg new file mode 100644 index 0000000..016332c Binary files /dev/null and b/Wallpapers/square-city.jpg differ diff --git a/Wallpapers/stall.jpg b/Wallpapers/stall.jpg new file mode 100644 index 0000000..f1ca8ba Binary files /dev/null and b/Wallpapers/stall.jpg differ diff --git a/Wallpapers/stay-vigil-by-pndora.jpg b/Wallpapers/stay-vigil-by-pndora.jpg new file mode 100644 index 0000000..58af6fb Binary files /dev/null and b/Wallpapers/stay-vigil-by-pndora.jpg differ diff --git a/Wallpapers/storm.jpg b/Wallpapers/storm.jpg new file mode 100644 index 0000000..94503f8 Binary files /dev/null and b/Wallpapers/storm.jpg differ diff --git a/Wallpapers/stormlight-archive.png b/Wallpapers/stormlight-archive.png new file mode 100644 index 0000000..5956b34 Binary files /dev/null and b/Wallpapers/stormlight-archive.png differ diff --git a/Wallpapers/street-4.png b/Wallpapers/street-4.png new file mode 100644 index 0000000..7ef4233 Binary files /dev/null and b/Wallpapers/street-4.png differ diff --git a/Wallpapers/street.png b/Wallpapers/street.png new file mode 100644 index 0000000..22f948d Binary files /dev/null and b/Wallpapers/street.png differ diff --git a/Wallpapers/subway.jpg b/Wallpapers/subway.jpg new file mode 100644 index 0000000..c986924 Binary files /dev/null and b/Wallpapers/subway.jpg differ diff --git a/Wallpapers/sunken-tower.png b/Wallpapers/sunken-tower.png new file mode 100644 index 0000000..784a42c Binary files /dev/null and b/Wallpapers/sunken-tower.png differ diff --git a/Wallpapers/sunlit-ruins.png b/Wallpapers/sunlit-ruins.png new file mode 100644 index 0000000..b721b6d Binary files /dev/null and b/Wallpapers/sunlit-ruins.png differ diff --git a/Wallpapers/sunset.jpg b/Wallpapers/sunset.jpg new file mode 100644 index 0000000..971a1c9 Binary files /dev/null and b/Wallpapers/sunset.jpg differ diff --git a/Wallpapers/sushi.jpg b/Wallpapers/sushi.jpg new file mode 100644 index 0000000..75978f6 Binary files /dev/null and b/Wallpapers/sushi.jpg differ diff --git a/Wallpapers/swirls.jpg b/Wallpapers/swirls.jpg new file mode 100644 index 0000000..da74128 Binary files /dev/null and b/Wallpapers/swirls.jpg differ diff --git a/Wallpapers/swirly-painting.jpg b/Wallpapers/swirly-painting.jpg new file mode 100644 index 0000000..8ea76d5 Binary files /dev/null and b/Wallpapers/swirly-painting.jpg differ diff --git a/Wallpapers/sword.jpg b/Wallpapers/sword.jpg new file mode 100644 index 0000000..00878c1 Binary files /dev/null and b/Wallpapers/sword.jpg differ diff --git a/Wallpapers/tank.jpg b/Wallpapers/tank.jpg new file mode 100644 index 0000000..eafea8f Binary files /dev/null and b/Wallpapers/tank.jpg differ diff --git a/Wallpapers/temple.jpg b/Wallpapers/temple.jpg new file mode 100644 index 0000000..dcc864f Binary files /dev/null and b/Wallpapers/temple.jpg differ diff --git a/Wallpapers/toast.png b/Wallpapers/toast.png new file mode 100644 index 0000000..87478b5 Binary files /dev/null and b/Wallpapers/toast.png differ diff --git a/Wallpapers/tora.jpg b/Wallpapers/tora.jpg new file mode 100644 index 0000000..de7da71 Binary files /dev/null and b/Wallpapers/tora.jpg differ diff --git a/Wallpapers/touhou-house.jpg b/Wallpapers/touhou-house.jpg new file mode 100644 index 0000000..1666a94 Binary files /dev/null and b/Wallpapers/touhou-house.jpg differ diff --git a/Wallpapers/touhou-lake.jpg b/Wallpapers/touhou-lake.jpg new file mode 100644 index 0000000..ac00346 Binary files /dev/null and b/Wallpapers/touhou-lake.jpg differ diff --git a/Wallpapers/tower.png b/Wallpapers/tower.png new file mode 100644 index 0000000..0be6f28 Binary files /dev/null and b/Wallpapers/tower.png differ diff --git a/Wallpapers/train-sideview.png b/Wallpapers/train-sideview.png new file mode 100644 index 0000000..3069db9 Binary files /dev/null and b/Wallpapers/train-sideview.png differ diff --git a/Wallpapers/train-station.jpg b/Wallpapers/train-station.jpg new file mode 100644 index 0000000..326bf43 Binary files /dev/null and b/Wallpapers/train-station.jpg differ diff --git a/Wallpapers/tree-stump.jpg b/Wallpapers/tree-stump.jpg new file mode 100644 index 0000000..43bd112 Binary files /dev/null and b/Wallpapers/tree-stump.jpg differ diff --git a/Wallpapers/tree.jpg b/Wallpapers/tree.jpg new file mode 100644 index 0000000..becfe68 Binary files /dev/null and b/Wallpapers/tree.jpg differ diff --git a/Wallpapers/trippy-purple.png b/Wallpapers/trippy-purple.png new file mode 100644 index 0000000..b116fe8 Binary files /dev/null and b/Wallpapers/trippy-purple.png differ diff --git a/Wallpapers/trolley.jpg b/Wallpapers/trolley.jpg new file mode 100644 index 0000000..c4d502b Binary files /dev/null and b/Wallpapers/trolley.jpg differ diff --git a/Wallpapers/underwater-deep.jpg b/Wallpapers/underwater-deep.jpg new file mode 100644 index 0000000..d3f08ee Binary files /dev/null and b/Wallpapers/underwater-deep.jpg differ diff --git a/Wallpapers/van-chilling.png b/Wallpapers/van-chilling.png new file mode 100644 index 0000000..539812e Binary files /dev/null and b/Wallpapers/van-chilling.png differ diff --git a/Wallpapers/venice-market.png b/Wallpapers/venice-market.png new file mode 100644 index 0000000..dd6be4e Binary files /dev/null and b/Wallpapers/venice-market.png differ diff --git a/Wallpapers/vibrant-gate.png b/Wallpapers/vibrant-gate.png new file mode 100644 index 0000000..caad5b4 Binary files /dev/null and b/Wallpapers/vibrant-gate.png differ diff --git a/Wallpapers/village-gate.jpg b/Wallpapers/village-gate.jpg new file mode 100644 index 0000000..299e05f Binary files /dev/null and b/Wallpapers/village-gate.jpg differ diff --git a/Wallpapers/voxel-city.jpg b/Wallpapers/voxel-city.jpg new file mode 100644 index 0000000..1016242 Binary files /dev/null and b/Wallpapers/voxel-city.jpg differ diff --git a/Wallpapers/voxel-houses-monochrome.png b/Wallpapers/voxel-houses-monochrome.png new file mode 100644 index 0000000..6b5cb29 Binary files /dev/null and b/Wallpapers/voxel-houses-monochrome.png differ diff --git a/Wallpapers/voyager-1.jpg b/Wallpapers/voyager-1.jpg new file mode 100644 index 0000000..ce07412 Binary files /dev/null and b/Wallpapers/voyager-1.jpg differ diff --git a/Wallpapers/voyager-10.jpg b/Wallpapers/voyager-10.jpg new file mode 100644 index 0000000..0f5f684 Binary files /dev/null and b/Wallpapers/voyager-10.jpg differ diff --git a/Wallpapers/voyager-11.jpg b/Wallpapers/voyager-11.jpg new file mode 100644 index 0000000..e56eb99 Binary files /dev/null and b/Wallpapers/voyager-11.jpg differ diff --git a/Wallpapers/voyager-12.jpg b/Wallpapers/voyager-12.jpg new file mode 100644 index 0000000..42c6d0a Binary files /dev/null and b/Wallpapers/voyager-12.jpg differ diff --git a/Wallpapers/voyager-13.jpg b/Wallpapers/voyager-13.jpg new file mode 100644 index 0000000..bad8c2a Binary files /dev/null and b/Wallpapers/voyager-13.jpg differ diff --git a/Wallpapers/voyager-14.jpg b/Wallpapers/voyager-14.jpg new file mode 100644 index 0000000..01d9c1b Binary files /dev/null and b/Wallpapers/voyager-14.jpg differ diff --git a/Wallpapers/voyager-15.jpg b/Wallpapers/voyager-15.jpg new file mode 100644 index 0000000..508e908 Binary files /dev/null and b/Wallpapers/voyager-15.jpg differ diff --git a/Wallpapers/voyager-16.jpg b/Wallpapers/voyager-16.jpg new file mode 100644 index 0000000..d089566 Binary files /dev/null and b/Wallpapers/voyager-16.jpg differ diff --git a/Wallpapers/voyager-17.jpg b/Wallpapers/voyager-17.jpg new file mode 100644 index 0000000..cdc73f5 Binary files /dev/null and b/Wallpapers/voyager-17.jpg differ diff --git a/Wallpapers/voyager-18.jpg b/Wallpapers/voyager-18.jpg new file mode 100644 index 0000000..2251be9 Binary files /dev/null and b/Wallpapers/voyager-18.jpg differ diff --git a/Wallpapers/voyager-19.jpg b/Wallpapers/voyager-19.jpg new file mode 100644 index 0000000..a768f71 Binary files /dev/null and b/Wallpapers/voyager-19.jpg differ diff --git a/Wallpapers/voyager-2.jpg b/Wallpapers/voyager-2.jpg new file mode 100644 index 0000000..18dddf5 Binary files /dev/null and b/Wallpapers/voyager-2.jpg differ diff --git a/Wallpapers/voyager-20.jpg b/Wallpapers/voyager-20.jpg new file mode 100644 index 0000000..d60024e Binary files /dev/null and b/Wallpapers/voyager-20.jpg differ diff --git a/Wallpapers/voyager-21.jpg b/Wallpapers/voyager-21.jpg new file mode 100644 index 0000000..75215b9 Binary files /dev/null and b/Wallpapers/voyager-21.jpg differ diff --git a/Wallpapers/voyager-22.jpg b/Wallpapers/voyager-22.jpg new file mode 100644 index 0000000..b43572a Binary files /dev/null and b/Wallpapers/voyager-22.jpg differ diff --git a/Wallpapers/voyager-3.jpg b/Wallpapers/voyager-3.jpg new file mode 100644 index 0000000..aca8a9c Binary files /dev/null and b/Wallpapers/voyager-3.jpg differ diff --git a/Wallpapers/voyager-4.jpg b/Wallpapers/voyager-4.jpg new file mode 100644 index 0000000..8ba18ad Binary files /dev/null and b/Wallpapers/voyager-4.jpg differ diff --git a/Wallpapers/voyager-5.jpg b/Wallpapers/voyager-5.jpg new file mode 100644 index 0000000..ff37806 Binary files /dev/null and b/Wallpapers/voyager-5.jpg differ diff --git a/Wallpapers/voyager-6.jpg b/Wallpapers/voyager-6.jpg new file mode 100644 index 0000000..5a8eb0f Binary files /dev/null and b/Wallpapers/voyager-6.jpg differ diff --git a/Wallpapers/voyager-7.jpg b/Wallpapers/voyager-7.jpg new file mode 100644 index 0000000..ad5e6f6 Binary files /dev/null and b/Wallpapers/voyager-7.jpg differ diff --git a/Wallpapers/voyager-8.jpg b/Wallpapers/voyager-8.jpg new file mode 100644 index 0000000..2f3f205 Binary files /dev/null and b/Wallpapers/voyager-8.jpg differ diff --git a/Wallpapers/voyager-9.jpg b/Wallpapers/voyager-9.jpg new file mode 100644 index 0000000..ab20236 Binary files /dev/null and b/Wallpapers/voyager-9.jpg differ diff --git a/Wallpapers/wall.jpg b/Wallpapers/wall.jpg new file mode 100644 index 0000000..8b8f438 Binary files /dev/null and b/Wallpapers/wall.jpg differ diff --git a/Wallpapers/wallhaven-vqoo1p.jpg b/Wallpapers/wallhaven-vqoo1p.jpg new file mode 100644 index 0000000..36ad817 Binary files /dev/null and b/Wallpapers/wallhaven-vqoo1p.jpg differ diff --git a/Wallpapers/wallpaper-theme-converter9.png b/Wallpapers/wallpaper-theme-converter9.png new file mode 100644 index 0000000..52648a6 Binary files /dev/null and b/Wallpapers/wallpaper-theme-converter9.png differ diff --git a/Wallpapers/wanderer.jpg b/Wallpapers/wanderer.jpg new file mode 100644 index 0000000..d3a98b8 Binary files /dev/null and b/Wallpapers/wanderer.jpg differ diff --git a/Wallpapers/waterfall.png b/Wallpapers/waterfall.png new file mode 100644 index 0000000..5b6b506 Binary files /dev/null and b/Wallpapers/waterfall.png differ diff --git a/Wallpapers/waves.png b/Wallpapers/waves.png new file mode 100644 index 0000000..8c61b4a Binary files /dev/null and b/Wallpapers/waves.png differ diff --git a/Wallpapers/whale.jpg b/Wallpapers/whale.jpg new file mode 100644 index 0000000..033942b Binary files /dev/null and b/Wallpapers/whale.jpg differ diff --git a/Wallpapers/wheat.png b/Wallpapers/wheat.png new file mode 100644 index 0000000..e957e81 Binary files /dev/null and b/Wallpapers/wheat.png differ diff --git a/Wallpapers/windows-xp.jpg b/Wallpapers/windows-xp.jpg new file mode 100644 index 0000000..925fa87 Binary files /dev/null and b/Wallpapers/windows-xp.jpg differ diff --git a/Wallpapers/winter-flowers.jpg b/Wallpapers/winter-flowers.jpg new file mode 100644 index 0000000..f1de5f0 Binary files /dev/null and b/Wallpapers/winter-flowers.jpg differ diff --git a/Wallpapers/yohoho.jpg b/Wallpapers/yohoho.jpg new file mode 100644 index 0000000..a647cb0 Binary files /dev/null and b/Wallpapers/yohoho.jpg differ diff --git a/Wallpapers/zuchold-archtecture.jpg b/Wallpapers/zuchold-archtecture.jpg new file mode 100644 index 0000000..e92230f Binary files /dev/null and b/Wallpapers/zuchold-archtecture.jpg differ diff --git a/Windhawk/Taskbar Volume Control/Taskbar Volume Control.txt b/Windhawk/Taskbar Volume Control/Taskbar Volume Control.txt new file mode 100644 index 0000000..22180ed --- /dev/null +++ b/Windhawk/Taskbar Volume Control/Taskbar Volume Control.txt @@ -0,0 +1 @@ +{"volumeIndicator":"win11","scrollArea":"taskbar","middleClickToMute":1,"ctrlScrollVolumeChange":0,"noAutomaticMuteToggle":0,"volumeChangeStep":2,"oldTaskbarOnWin11":0} \ No newline at end of file diff --git a/Windhawk/Taskbar/Taskbar Labels.txt b/Windhawk/Taskbar/Taskbar Labels.txt new file mode 100644 index 0000000..465612b --- /dev/null +++ b/Windhawk/Taskbar/Taskbar Labels.txt @@ -0,0 +1,12 @@ +{ + "taskbarItemWidth": 0, + "minimumTaskbarItemWidth": 0, + "maximumTaskbarItemWidth": 130, + "runningIndicatorStyle": "fullWidth", + "progressIndicatorStyle": "fullWidth", + "fontSize": 11, + "leftAndRightPaddingSize": 12, + "spaceBetweenIconAndLabel": 14, + "labelForSingleItem": "%name%", + "labelForMultipleItems": "[%amount%] %name%" +} diff --git a/Windhawk/Taskbar/Taskbar height and icon size.txt b/Windhawk/Taskbar/Taskbar height and icon size.txt new file mode 100644 index 0000000..479252a --- /dev/null +++ b/Windhawk/Taskbar/Taskbar height and icon size.txt @@ -0,0 +1,5 @@ +{ + "IconSize": 16, + "TaskbarHeight": 36, + "TaskbarButtonWidth": 37 +} diff --git a/Windhawk/Taskbar/Windows 11 Taskbar Styler.txt b/Windhawk/Taskbar/Windows 11 Taskbar Styler.txt new file mode 100644 index 0000000..c533c9e --- /dev/null +++ b/Windhawk/Taskbar/Windows 11 Taskbar Styler.txt @@ -0,0 +1 @@ +{"controlStyles[0].target":"Taskbar.TaskListButton","controlStyles[0].styles[0]":"CornerRadius=3","controlStyles[1].target":"SystemTray.TextIconContent > Grid#ContainerGrid > SystemTray.AdaptiveTextBlock#Base > TextBlock#InnerTextBlock","controlStyles[1].styles[0]":"FontSize=16","controlStyles[2].target":"SystemTray.NotifyIconView#NotifyItemIcon","controlStyles[2].styles[0]":"MinWidth=25","controlStyles[3].target":"SystemTray.OmniButton#ControlCenterButton > Grid > ContentPresenter > ItemsPresenter > StackPanel > ContentPresenter[1] > SystemTray.IconView > Grid > Grid","controlStyles[3].styles[0]":"Visibility=Collapsed","controlStyles[4].target":"SystemTray.TextIconContent > Grid#ContainerGrid","controlStyles[4].styles[0]":"Padding=2","controlStyles[5].target":"SystemTray.ChevronIconView","controlStyles[5].styles[0]":"MinWidth=27","controlStyles[6].target":"SystemTray.OmniButton#NotificationCenterButton > Grid > ContentPresenter > ItemsPresenter > StackPanel > ContentPresenter > SystemTray.IconView#SystemTrayIcon > Grid > Grid > SystemTray.TextIconContent","controlStyles[6].styles[0]":"Visibility=Collapsed","controlStyles[7].target":"Taskbar.TaskListLabeledButtonPanel > Border#BackgroundElement","controlStyles[7].styles[0]":"Background:=#1e1e2e","controlStyles[8].target":"Grid#SystemTrayFrameGrid","controlStyles[8].styles[0]":"Background:=#1e1e2e","controlStyles[8].styles[1]":"CornerRadius=6","controlStyles[8].styles[2]":"Margin=0,5,4,4","controlStyles[8].styles[3]":"Padding=3,0,-8,0","controlStyles[7].styles[1]":"CornerRadius=6","controlStyles[9].target":"Taskbar.TaskListLabeledButtonPanel@CommonStates > Rectangle#RunningIndicator","controlStyles[9].styles[0]":"Height=27","controlStyles[9].styles[1]":"RadiusX=5","controlStyles[9].styles[2]":"RadiusY=5","controlStyles[9].styles[3]":"StrokeThickness=2","controlStyles[9].styles[4]":"Stroke@InactivePointerOver=#8dbcff","controlStyles[9].styles[5]":"Stroke@InactivePressed=#8dbcff","controlStyles[9].styles[6]":"Stroke@ActiveNormal=#8dbcff","controlStyles[9].styles[7]":"Stroke@ActivePointerOver=#8dbcff","controlStyles[9].styles[8]":"Stroke@ActivePressed=#8dbcff","controlStyles[9].styles[9]":"Fill=Transparent","controlStyles[9].styles[10]":"Width=37","controlStyles[9].styles[11]":"VerticalAlignment=1","controlStyles[9].styles[12]":"Canvas.ZIndex=1","controlStyles[10].target":"SystemTray.ImageIconContent > Grid#ContainerGrid > Image","controlStyles[10].styles[0]":"Width=13","controlStyles[11].target":"SystemTray.TextIconContent > Grid#ContainerGrid > SystemTray.AdaptiveTextBlock#Base > TextBlock#InnerTextBlock","controlStyles[11].styles[0]":"FontSize=14","controlStyles[12].target":"TextBlock#LabelControl","controlStyles[12].styles[0]":"FontFamily=JetBrainsMono NF","controlStyles[12].styles[2]":"Padding=2,0,8,0","controlStyles[13].target":"Taskbar.ExperienceToggleButton#LaunchListButton[AutomationProperties.AutomationId=StartButton]","controlStyles[13].styles[0]":"Visibility=Collapsed","controlStyles[12].styles[1]":"Foreground=#cdd6f4","controlStyles[14].target":"Windows.UI.Xaml.Controls.TextBlock#InnerTextBlock[Text=]","controlStyles[14].styles[0]":"Text=","controlStyles[15].target":"Taskbar.TaskbarFrame > Grid#RootGrid > Taskbar.TaskbarBackground > Grid > Rectangle#BackgroundFill","controlStyles[15].styles[0]":"Fill=Transparent","controlStyles[16].target":"Taskbar.TaskbarBackground#HoverFlyoutBackgroundControl > Grid > Rectangle#BackgroundFill","controlStyles[16].styles[0]":"Fill=#1e1e2e","controlStyles[17].target":"Rectangle#BackgroundStroke","controlStyles[17].styles[0]":"Fill=Transparent","controlStyles[18].target":"Taskbar.TaskListButtonPanel#ExperienceToggleButtonRootPanel > Border#BackgroundElement","controlStyles[18].styles[0]":"Background=#1e1e2e","controlStyles[19].target":"TextBlock#DateInnerTextBlock","controlStyles[19].styles[0]":"Margin=0,0,0,-2","controlStyles[20].target":"Grid#OverflowRootGrid > Border","controlStyles[20].styles[0]":"Background=#1e1e2e","theme":"","styleConstants[0]":"","resourceVariables[0].variableKey":"","resourceVariables[0].value":""} \ No newline at end of file diff --git a/Windhawk/Windows 11 Notification Center Styler/Windows 11 Notification Center Styler.txt b/Windhawk/Windows 11 Notification Center Styler/Windows 11 Notification Center Styler.txt new file mode 100644 index 0000000..6d0e497 --- /dev/null +++ b/Windhawk/Windows 11 Notification Center Styler/Windows 11 Notification Center Styler.txt @@ -0,0 +1 @@ +{"theme":"TranslucentShell","controlStyles[0].target":"","controlStyles[0].styles[0]":"","styleConstants[0]":"","resourceVariables[0].variableKey":"","resourceVariables[0].value":""} \ No newline at end of file diff --git a/Windhawk/Windows 11 Notification Center Styler/temp b/Windhawk/Windows 11 Notification Center Styler/temp new file mode 100644 index 0000000..039727e --- /dev/null +++ b/Windhawk/Windows 11 Notification Center Styler/temp @@ -0,0 +1 @@ +lol diff --git a/YASB/config.yaml b/YASB/config.yaml new file mode 100644 index 0000000..df95104 --- /dev/null +++ b/YASB/config.yaml @@ -0,0 +1,319 @@ +watch_config: true +debug: false +update_check: true # Enable automatic update check. +komorebi: + start_command: "glazewm.exe start" + stop_command: "glazewm.exe command wm-exit" + reload_command: "glazewm.exe command wm-exit && glazewm.exe start" +bars: + primary-bar: + enabled: true + screens: ["primary"] + class_name: "yasb-bar" + alignment: + position: "top" + center: false + animation: + enabled: true + duration: 1000 + blur_effect: + enabled: true + acrylic: true + dark_mode: true + round_corners: true + round_corners_type: "normal" + border_color: "#8dbcff" + window_flags: + always_on_top: false + windows_app_bar: true + dimensions: + width: "100%" + height: 26 + padding: + top: 6 + left: 6 + bottom: 0 + right: 6 + widgets: + left: [ + "glazewm_tiling_direction", + "glazewm_workspaces", + "pomodoro", + "active_window" + ] + center: [ + "clock" + ] + right: [ + "cava", + "weather", + "microphone", + "cpu", + "memory", + "wallpapers", + "power_menu" + ] +widgets: + active_window: + type: "yasb.active_window.ActiveWindowWidget" + options: + label: "{win[title]}" + label_alt: "[class_name='{win[class_name]}' exe='{win[process][name]}' hwnd={win[hwnd]}]" + label_no_window: "" + label_icon: true + label_icon_size: 14 + max_length: 46 + max_length_ellipsis: "..." + monitor_exclusive: true + clock: + type: "yasb.clock.ClockWidget" + options: + label: "{%I:%M:%S}" + label_alt: "{%I:%M:%S}" + timezones: [] + callbacks: + on_left: "toggle_calendar" + weather: + type: "yasb.weather.WeatherWidget" + options: + label: "{icon} {temp}" + label_alt: "{location}: Min {min_temp}, Max {max_temp}, Humidity {humidity}" + api_key: # Get your free API key from https://www.weatherapi.com/ + update_interval: 600 + hide_decimal: true + location: # You can use "USA Los Angeles 90006" {COUNTRY CITY ZIP_CODE}, or just city. + callbacks: + on_left: "toggle_card" + icons: + sunnyDay: "\ue30d" + clearNight: "\ue32b" + cloudyDay: "\ue312" + cloudyNight: "\ue311" + rainyDay: "\ue308" + rainyNight: "\ue333" + snowyIcyDay: "\ue30a" + snowyIcyNight: "\ue335" + blizzardDay: "\udb83\udf36" + blizzardNight: "\udb83\udf36" + foggyDay: "\ue303" + foggyNight: "\ue346" + thunderstormDay: "\ue30f" + thunderstormNight: "\ue338" + default: "\uebaa" + weather_card: + blur: True + round_corners: True + round_corners_type: "normal" + border_color: "System" + alignment: "right" + direction: "down" + icon_size: 64 + show_hourly_forecast: True # Set to False to disable hourly forecast + time_format: "12h" # can be 12h or 24h + hourly_point_spacing: 76 + hourly_icon_size: 32 # better to set 16, 32 or 64 for better quality + icon_smoothing: true # should be true for smoother icon or false for sharper icon if using 16, 32 or 64 for hourly_icon_size + temp_line_width: 2 # can be 0 to hide the temperature line + current_line_color: "#8EAEE8" + current_line_width: 1 # can be 0 to hide the current hour line + current_line_style: "dot" + label_shadow: + enabled: true + color: "black" + radius: 3 + offset: [ 1, 1 ] + microphone: + type: "yasb.microphone.MicrophoneWidget" + options: + label: "{icon} {level}" + label_alt: "{icon} {level}%" + icons: + normal: "\udb80\udf6c" + muted: "\udb80\udf6d" + callbacks: + on_left: "toggle_mute" + on_middle: "toggle_label" + on_right: "exec cmd.exe /c start ms-settings:sound" + power_menu: + type: "yasb.power_menu.PowerMenuWidget" + options: + label: "\uf011" + uptime: True + blur: False + blur_background: True + animation_duration: 200 + button_row: 5 + buttons: + shutdown: ["\uf011", "Rage Quit"] + restart: ["\uead2", "Oops, Reboot"] + signout: ["\udb80\udf43", "Dip Out"] + hibernate: ["\uf28e", "Bear Mode"] + sleep: ["\u23fe", "Nap Time"] + cancel: ["", "Nah, Im Good "] + wallpapers: + type: "yasb.wallpapers.WallpapersWidget" + options: + label: "\udb83\ude09" + image_path: # Example path to folder with images + change_automatically: false # Automatically change wallpaper + update_interval: 60 # If change_automatically is true, update interval in seconds + gallery: + enabled: true + blur: true + image_width: 220 + image_per_page: 8 + show_buttons: true + orientation: "portrait" + image_spacing: 8 + lazy_load: true + lazy_load_delay: 80 + lazy_load_fadein: 400 + image_corner_radius: 20 + enable_cache: true + cava: + type: "yasb.cava.CavaWidget" + options: + bar_height: 12 + min_bar_height: 0 + gradient: 1 + reverse: 0 + foreground: "#89b4fa" + gradient_color_1: '#74c7ec' + gradient_color_2: '#89b4fa' + gradient_color_3: '#cba6f7' + bars_number: 8 + bar_spacing: 2 + bar_width: 4 + hide_empty: true + container_padding: + top: 0 + left: 8 + bottom: 0 + right: 8 + cpu: + type: "yasb.cpu.CpuWidget" + options: + label: "{info[percent][total]:.0f}%" + progress_bar: + enabled: true + position: "left" + size: 16 + thickness: 3 + color: "#89dceb" + background_color: "#1e1e2e" + animation: true + animation: + enabled: true + type: FadeInOut + duration: 200 + update_interval: 2000 + callbacks: + on_right: "do_nothing" + on_left: "do_nothing" + glazewm_workspaces: + type: "glazewm.workspaces.GlazewmWorkspacesWidget" + options: + # Offline behavior (matching komorebi's label_offline and hide_if_offline) + offline_label: "GlazeWM Offline" + hide_if_offline: true + + # Workspace display labels (matching komorebi's label_workspace_btn and label_workspace_active_btn) + populated_label: "\udb85\udcfc" + empty_label: "\udb85\udcfc" + active_populated_label: "\udb85\udcfb" + active_empty_label: "\udb85\udcfb" + + # Workspace management (matching komorebi's hide_empty_workspaces) + hide_empty_workspaces: false + + # Server connection + glazewm_server_uri: "ws://localhost:6123" + + # Additional GlazeWM-specific options (keeping defaults) + enable_scroll_switching: true + reverse_scroll_direction: true + container_padding: + top: 0 + left: 0 + bottom: 0 + right: 0 + glazewm_tiling_direction: + type: "glazewm.tiling_direction.GlazewmTilingDirectionWidget" + options: + horizontal_label: "\udb81\udce1" + vertical_label: "\udb81\udce2" + btn_shadow: + enabled: true + color: "black" + radius: 3 + offset: [ 1, 1 ] + pomodoro: + type: "yasb.pomodoro.PomodoroWidget" + options: + label: "{icon} {remaining}" + label_alt: "{icon} {session}/{total_sessions} - {status}" + work_duration: 25 + break_duration: 5 + long_break_duration: 15 + long_break_interval: 4 + auto_start_breaks: true + auto_start_work: true + sound_notification: true + show_notification: true + hide_on_break: false + session_target: 8 + icons: + work: "\uf252" + break: "\uf253" + paused: "\uf254" + container_padding: + top: 0 + left: 6 + bottom: 0 + right: 6 + menu: + blur: true + round_corners: true + round_corners_type: "normal" + border_color: "System" + alignment: "right" + direction: "down" + offset_top: 6 + offset_left: 0 + circle_background_color: "#09ffffff" + circle_work_progress_color: "#88c0d0" + circle_break_progress_color: "#a3be8c" + circle_thickness: 8 + circle_size: 160 + callbacks: + on_left: "toggle_menu" + on_middle: "reset_timer" + on_right: "toggle_label" + label_shadow: + enabled: true + color: "black" + radius: 3 + offset: [ 1, 1 ] + memory: + type: "yasb.memory.MemoryWidget" + options: + label: "{virtual_mem_percent}%" + update_interval: 5000 + progress_bar: + enabled: true + size: 16 + thickness: 3 + position: left + color: "#cba6f7" + background_color: "#1e1e2e" + animation: True + animation: + enabled: true + type: FadeInOut + duration: 200 + callbacks: + on_left: "do_nothing" + memory_thresholds: + low: 25 + medium: 50 + high: 90 diff --git a/YASB/styles.css b/YASB/styles.css new file mode 100644 index 0000000..873e875 --- /dev/null +++ b/YASB/styles.css @@ -0,0 +1,325 @@ +* { + font-size: 10px; + color: #cdd6f4; + font-weight: 500; + font-family: "JetBrainsMono NFP"; + margin: 0; + padding: 0; +} +.yasb-bar { + padding: 0 8px; + margin: 0; + background-color: rgba(30, 30, 46, 0.5); + border-radius: 8px; +} +.widget { + padding: 0 10px; + margin: 0; +} +.widget .label { + padding: 2px 2px 1px 2px; + +} +.widget .label.alt { + padding: 1px 8px 1px 8px; +} + .clock-widget .label { + padding-left:8px; +} +.glazewm-workspaces { + margin: 0; +} +.glazewm-workspaces .ws-btn { + font-size: 18px; + background-color: transparent; + border: none; + padding: 0 2px 0 2px; + margin: 0; + color: #95a0ad; +} + +.glazewm-workspaces .ws-btn.active_populated { + color: #89b4fa; +} + +.glazewm-workspaces .ws-btn.active_empty { + color: #89b4fa; +} + +.glazewm-workspaces .ws-btn.populated { + color: #74c7ec; +} + +.glazewm-workspaces .ws-btn.empty { + color: #95a0ad; +} + +.glazewm-workspaces .ws-btn:hover, +.glazewm-workspaces .ws-btn.populated:hover, +.glazewm-workspaces .ws-btn.empty:hover { + color: #89b4fa; +} + +.glazewm-tiling-direction { + background-color: transparent; + padding: 0; + margin: 0; +} + +.glazewm-tiling-direction .btn { + font-size: 18px; + width: 14px; + padding: 0 4px 0 4px; + color: #CDD6F4; + border: none; +} + +.glazewm-tiling-direction .btn:hover { + background-color: #727272; +} +/*POWER MENU WIDGET*/ +/* Uptime text */ +.uptime { + font-size: 14px; + margin-bottom: 10px; + color: rgba(191, 202, 219, 0.726); + font-weight: 600; + font-family: "JetBrainsMono NFP"; +} +.power-menu-widget .label { + color: #eba0ac; + font-size: 16px; +} +.power-menu-popup .button { + padding: 0; + width: 160px; + height: 240px; + border-radius: 4px; + background-color: rgba(41, 42, 58, 0.75); + font-family: "JetBrainsMono NFP"; + color: white; + border: 4px solid rgba(255, 255, 255, 0); + +} +.power-menu-popup .button.hover { + background-color: rgb(55, 56, 75); + border: 4px solid rgb(55, 56, 75); +} +.power-menu-popup .button .label { + margin-bottom: 8px; + font-size: 16px; + font-weight: 600; + color: rgba(255, 255, 255, 0.6); + font-family: "JetBrainsMono NFP"; +} +.power-menu-popup .button .icon { + font-size: 64px; + padding-top: 54px; + color: rgba(255, 255, 255, 0.25); +} +.power-menu-popup .button.cancel { + height: 20px !important; /* Much thinner than the 240px of other buttons */ + width: 100%; /* Full width to span across */ + padding-top: 10px; + padding-bottom: 10px; +} + +.power-menu-popup .button.cancel .icon { + font-size: 24px !important; /* Smaller icon for the thinner button */ + padding-top: 0px !important; /* Remove the large top padding */ + color: rgba(243, 139, 168, 0.55); +} + +.power-menu-popup .button.cancel .label { + margin-bottom: 0px !important; /* Remove bottom margin */ + color: rgba(243, 139, 168, 0.95); +} +/* ICONS */ +.icon { + font-size: 16px; +} +.volume-widget .icon { + color: #89b4fa; + margin: 1px 2px 0 0; +} +.start-menu .icon { + font-size: 18px; + color: #89b4fa +} +.clock-widget .icon { + color: #cba6f7; + font-size: 14px; +} +/* WEATHER WIDGET */ +.weather-card { + background-color: rgba(17, 17, 27, 0.5); +} +.weather-card-today { + border: 1px solid #282936; + border-radius: 8px; + background-color: rgba(17, 17, 27, 0.2); +} +.weather-card-today .label { + font-size: 12px; +} +.weather-card-today .label.location { + font-size: 24px; + font-weight: 700; +} +.weather-card-today .label.alert { + font-size: 12px; + font-weight: 700; + background-color: rgba(247, 199, 42, 0.05); + border: 1px solid rgba(247, 209, 42, 0.1); + color: rgba(196, 181, 162, 0.85); + border-radius: 6px; + padding: 5px 0; +} +.weather-card-day { + border: 1px solid #45475a; + border-radius: 8px; + background-color: rgba(17, 17, 27, 0.2); +} + +.weather-card-day.active { + background-color: rgba(40, 40, 60, 0.6); + border: 1px solid rgba(50, 50, 75, 1); +} + +.weather-card-day:hover { + background-color: rgba(40, 40, 60, 0.6); +} + +.weather-card-day .label { + font-size: 12px; +} + +.weather-card .hourly-container { + border: 1px solid #282936; + background-color: #3c5fa0; + border-radius: 8px; + min-height: 150px; +} + +.weather-card .hourly-data { + /* font-family: 'Segoe UI';*/ + /* color: cyan;*/ /* <- Font color */ + background-color: #FAE93F; /* <- Curve color */ + font-size: 12px; + font-weight: bold; +} +.pomodoro-widget { + padding: 0 0 0 0; +} +.pomodoro-widget .icon { + font-size: 12px; + padding-right: 4px; +} +.pomodoro-widget .label.paused, +.pomodoro-widget .icon.paused { + color: #7d7e8b; +} +.pomodoro-widget .label.work, +.pomodoro-widget .icon.work { + color: #a6e3a1; +} +.pomodoro-widget .label.break, +.pomodoro-widget .icon.break { + color: #89b4fa; +} +/* Pomodoro menu styling */ +.pomodoro-menu { + background-color: rgba(17, 17, 27, 0.2); + border-radius: 8px; +} +.pomodoro-menu .header { + font-size: 16px; + font-weight: 600; + max-height: 0px; + color: #ffffff; +} +.pomodoro-menu .status { + font-size: 18px; + font-weight: 600; + color: #cdd6f4; +} +.pomodoro-menu .session { + font-size: 12px; + color: #a6adc8; +} +.pomodoro-menu .button { + background-color: #3f4053; + color: #cdd6f4; + border: none; + border-radius: 4px; + padding: 6px 12px; +} +.pomodoro-menu .button.start { + background-color: #3f4053; +} +.pomodoro-menu .button.reset { + background-color: #3f4053; +} +.pomodoro-menu .button:hover { + background-color: rgba(255, 255, 255, 0.158); +} +.pomodoro-menu .button.pause { + background-color: #a6e3a1; + color: #1e1e2e; +} +.pomodoro-menu .button:pressed { + background-color: #5a5b6e; +} + +.calendar { + background-color: rgba(17, 17, 27, 0.4); +} +.calendar .calendar-table, +.calendar .calendar-table::item { + background-color: rgba(17, 17, 27, 0); + color: rgba(162, 177, 196, 0.85); + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + margin: 0; + padding: 0; + border: none; + outline: none; +} +.calendar .calendar-table::item:selected { + color: rgb(255, 255, 255); + background-color: #007acc; + border-radius: 10px; +} +.calendar .day-label { + margin-top: 20px; +} +.calendar .day-label, +.calendar .month-label, +.calendar .date-label, +.calendar .week-label, +.calendar .holiday-label { + font-family: 'Segoe UI'; + font-size: 16px; + color: #fff; + font-weight: 700; + min-width: 180px; + max-width: 180px; +} +.calendar .week-label, +.calendar .holiday-label { + font-size: 12px; + font-weight: 600; + color: rgba(162, 177, 196, 0.85); +} +.calendar .holiday-label { + color: rgba(162, 177, 196, 0.85); + font-weight: 700; +} +.calendar .month-label { + font-weight: normal; +} +.calendar .date-label { + font-size: 88px; + font-weight: 900; + color: rgb(255, 255, 255); + margin-top: -20px; +}