This commit is contained in:
Bram Kelchtermans 2024-07-08 22:46:35 +02:00
parent 02f44c49d2
commit 27254d817a
56249 changed files with 808097 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,112 @@
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
# ZSH_THEME="robbyrussell"
ZSH_THEME="powerlevel10k/powerlevel10k"
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes/
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment one of the following lines to change the auto-update behavior
# zstyle ':omz:update' mode disabled # disable automatic updates
# zstyle ':omz:update' mode auto # update automatically without asking
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
# Uncomment the following line to change how often to auto-update (in days).
# zstyle ':omz:update' frequency 13
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# You can also set it to another string to have that shown instead of the default red dots.
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
# HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
source $ZSH/oh-my-zsh.sh
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh

View File

@ -0,0 +1,12 @@
[color]
gradient = 1
gradient_color_1 = '#80DEEA' # Material Cyan
gradient_color_2 = '#81D4FA' # Material Light Blue
gradient_color_3 = '#4FC3F7' # Material Blue
gradient_color_4 = '#42A5F5' # Material Blue Accent
gradient_color_5 = '#7E57C2' # Material Deep Purple
gradient_color_6 = '#BA68C8' # Material Purple
gradient_color_7 = '#EC407A' # Material Pink
gradient_color_8 = '#E57373' # Material Red

View File

@ -0,0 +1,79 @@
#version 330
in vec2 fragCoord;
out vec4 fragColor;
// bar values. defaults to left channels first (low to high), then right (high to low).
uniform float bars[512];
uniform int bars_count; // number of bars (left + right) (configurable)
uniform int bar_width; // bar width (configurable), not used here
uniform int bar_spacing; // space bewteen bars (configurable)
uniform vec3 u_resolution; // window resolution
//colors, configurable in cava config file (r,g,b) (0.0 - 1.0)
uniform vec3 bg_color; // background color
uniform vec3 fg_color; // foreground color
uniform int gradient_count;
uniform vec3 gradient_colors[8]; // gradient colors
vec3 normalize_C(float y,vec3 col_1, vec3 col_2, float y_min, float y_max)
{
//create color based on fraction of this color and next color
float yr = (y - y_min) / (y_max - y_min);
return col_1 * (1.0 - yr) + col_2 * yr;
}
void main()
{
// find which bar to use based on where we are on the x axis
float x = u_resolution.x * fragCoord.x;
int bar = int(bars_count * fragCoord.x);
//calculate a bar size
float bar_size = u_resolution.x / bars_count;
//the y coordinate and bar values are the same
float y = bars[bar];
// make sure there is a thin line at bottom
if (y * u_resolution.y < 1.0)
{
y = 1.0 / u_resolution.y;
}
//draw the bar up to current height
if (y > fragCoord.y)
{
//make some space between bars basen on settings
if (x > (bar + 1) * (bar_size) - bar_spacing)
{
fragColor = vec4(bg_color,1.0);
}
else
{
if (gradient_count == 0)
{
fragColor = vec4(fg_color,1.0);
}
else
{
//find which color in the configured gradient we are at
int color = int((gradient_count - 1) * fragCoord.y);
//find where on y this and next color is supposed to be
float y_min = color / (gradient_count - 1.0);
float y_max = (color + 1.0) / (gradient_count - 1.0);
//make color
fragColor = vec4(normalize_C(fragCoord.y, gradient_colors[color], gradient_colors[color + 1], y_min, y_max), 1.0);
}
}
}
else
{
fragColor = vec4(bg_color,1.0);
}
}

View File

@ -0,0 +1,34 @@
#version 330
in vec2 fragCoord;
out vec4 fragColor;
// bar values. defaults to left channels first (low to high), then right (high to low).
uniform float bars[512];
uniform int bars_count; // number of bars (left + right) (configurable)
uniform vec3 u_resolution; // window resolution, not used here
//colors, configurable in cava config file
uniform vec3 bg_color; // background color(r,g,b) (0.0 - 1.0), not used here
uniform vec3 fg_color; // foreground color, not used here
void main()
{
// find which bar to use based on where we are on the x axis
int bar = int(bars_count * fragCoord.x);
float bar_y = 1.0 - abs((fragCoord.y - 0.5)) * 2.0;
float y = (bars[bar]) * bar_y;
float bar_x = (fragCoord.x - float(bar) / float(bars_count)) * bars_count;
float bar_r = 1.0 - abs((bar_x - 0.5)) * 2;
bar_r = bar_r * bar_r * 2;
// set color
fragColor.r = fg_color.x * y * bar_r;
fragColor.g = fg_color.y * y * bar_r;
fragColor.b = fg_color.z * y * bar_r;
}

View File

@ -0,0 +1,14 @@
#version 330
// Input vertex data, different for all executions of this shader.
layout(location = 0) in vec3 vertexPosition_modelspace;
// Output data ; will be interpolated for each fragment.
out vec2 fragCoord;
void main()
{
gl_Position = vec4(vertexPosition_modelspace,1);
fragCoord = (vertexPosition_modelspace.xy+vec2(1,1))/2.0;
}

View File

@ -0,0 +1,495 @@
[ca/desrt/dconf-editor]
saved-pathbar-path='/'
saved-view='/'
show-warning=false
window-height=500
window-is-maximized=false
window-width=540
[com/mattjakeman/ExtensionManager]
is-maximized=false
last-used-version='0.5.0'
[org/gnome/Console]
custom-font='FiraCode Nerd Font Mono 10'
last-window-maximised=false
last-window-size=(857, 511)
use-system-font=false
[org/gnome/Music]
window-maximized=false
window-size=[767, 668]
[org/gnome/Weather]
locations=[<(uint32 2, <('New York City, Central Park', 'KNYC', false, [(0.71180344078725644, -1.2909618758762367)], @a(dd) [])>)>]
window-height=497
window-maximized=false
window-width=707
[org/gnome/calculator]
accuracy=9
angle-units='degrees'
base=10
button-mode='basic'
number-format='automatic'
show-thousands=false
show-zeroes=false
source-currency=''
source-units='degree'
target-currency=''
target-units='radian'
window-maximized=false
window-size=(360, 506)
word-size=64
[org/gnome/calendar]
active-view='week'
window-maximized=false
window-size=(986, 600)
[org/gnome/clocks/state/window]
maximized=false
panel-id='world'
size=(870, 690)
[org/gnome/control-center]
last-panel='system'
window-state=(980, 640, true)
[org/gnome/desktop/app-folders]
folder-children=['Utilities', 'YaST', 'Pardus']
[org/gnome/desktop/app-folders/folders/Pardus]
categories=['X-Pardus-Apps']
name='X-Pardus-Apps.directory'
translate=true
[org/gnome/desktop/app-folders/folders/Utilities]
apps=['org.gnome.baobab.desktop', 'org.gnome.DiskUtility.desktop', 'org.gnome.seahorse.Application.desktop', 'org.gnome.Logs.desktop', 'avahi-discover.desktop']
categories=['X-GNOME-Utilities']
excluded-apps=['org.gnome.Console.desktop', 'org.gnome.Evince.desktop', 'org.gnome.Characters.desktop', 'nm-connection-editor.desktop', 'org.gnome.font-viewer.desktop']
name='X-GNOME-Utilities.directory'
translate=true
[org/gnome/desktop/app-folders/folders/YaST]
categories=['X-SuSE-YaST']
name='suse-yast.directory'
translate=true
[org/gnome/desktop/background]
color-shading-type='solid'
picture-options='zoom'
picture-uri='file:///usr/share/backgrounds/macosw/MacVentura-Light.jpg'
picture-uri-dark='file:///usr/share/backgrounds/macosw/MacVentura-Dark.jpg'
primary-color='#000000000000'
secondary-color='#000000000000'
[org/gnome/desktop/input-sources]
sources=[('xkb', 'us')]
xkb-options=@as []
[org/gnome/desktop/interface]
color-scheme='default'
cursor-theme='WhiteSur-cursors'
document-font-name='SF Pro Display 10'
enable-animations=true
font-hinting='full'
font-name='SF Pro Display 10'
gtk-theme='WhiteSur-Light'
icon-theme='WhiteSur-light'
monospace-font-name='MesloLGS NF 13'
toolkit-accessibility=false
[org/gnome/desktop/notifications]
application-children=['gnome-power-panel', 'org-gnome-calendar', 'firefox', 'com-mattjakeman-extensionmanager', 'org-gnome-settings']
[org/gnome/desktop/notifications/application/com-mattjakeman-extensionmanager]
application-id='com.mattjakeman.ExtensionManager.desktop'
[org/gnome/desktop/notifications/application/firefox]
application-id='firefox.desktop'
[org/gnome/desktop/notifications/application/gnome-power-panel]
application-id='gnome-power-panel.desktop'
[org/gnome/desktop/notifications/application/org-gnome-calendar]
application-id='org.gnome.Calendar.desktop'
[org/gnome/desktop/notifications/application/org-gnome-settings]
application-id='org.gnome.Settings.desktop'
[org/gnome/desktop/peripherals/keyboard]
numlock-state=true
[org/gnome/desktop/peripherals/touchpad]
two-finger-scrolling-enabled=true
[org/gnome/desktop/privacy]
old-files-age=uint32 30
recent-files-max-age=-1
[org/gnome/desktop/screensaver]
color-shading-type='solid'
picture-options='zoom'
picture-uri='file:///usr/share/backgrounds/macosw/MacVentura-Light.jpg'
primary-color='#000000000000'
secondary-color='#000000000000'
[org/gnome/desktop/search-providers]
disabled=['org.gnome.Characters.desktop', 'org.gnome.seahorse.Application.desktop']
sort-order=['org.gnome.Contacts.desktop', 'org.gnome.Documents.desktop', 'org.gnome.Nautilus.desktop']
[org/gnome/desktop/session]
idle-delay=uint32 300
[org/gnome/desktop/wm/preferences]
button-layout='close,maximize,minimize:'
[org/gnome/evolution-data-server]
migrated=true
[org/gnome/file-roller/listing]
list-mode='as-folder'
name-column-width=184
show-path=false
sort-method='name'
sort-type='ascending'
[org/gnome/file-roller/ui]
sidebar-width=200
window-height=480
window-width=600
[org/gnome/gnome-system-monitor]
show-dependencies=false
show-whose-processes='user'
[org/gnome/gnome-system-monitor/disktreenew]
col-6-visible=true
col-6-width=0
columns-order=[5]
sort-col=1
sort-order=0
[org/gnome/maps]
last-viewed-location=[0.0, 0.0]
map-type='MapsStreetSource'
transportation-type='pedestrian'
window-maximized=false
window-size=[682, 493]
zoom-level=2
[org/gnome/mutter]
center-new-windows=true
overlay-key='Super_L'
[org/gnome/mutter/keybindings]
toggle-tiled-left=@as []
toggle-tiled-right=@as []
[org/gnome/nautilus/icon-view]
default-zoom-level='medium'
[org/gnome/nautilus/preferences]
default-folder-viewer='icon-view'
migrated-gtk-settings=true
search-filter-time-type='last_modified'
[org/gnome/nautilus/window-state]
initial-size=(770, 513)
maximized=false
[org/gnome/nm-applet/eap/b2694852-f55e-3421-a3a8-3c368465ecb2]
ignore-ca-cert=false
ignore-phase2-ca-cert=false
[org/gnome/pomodoro/state]
timer-date='2024-05-24T01:55:24+0000'
timer-elapsed=0.0
timer-paused=false
timer-score=0.0
timer-state='null'
timer-state-date='2024-05-24T01:55:24+0000'
timer-state-duration=0.0
[org/gnome/portal/filechooser/gnome-background-panel]
last-folder-path='/usr/share/backgrounds/macosw'
[org/gnome/settings-daemon/plugins/power]
sleep-inactive-ac-timeout=3600
sleep-inactive-ac-type='nothing'
[org/gnome/shell]
app-picker-layout=[{'display-im6.q16.desktop': <{'position': <0>}>, 'nm-connection-editor.desktop': <{'position': <1>}>, 'org.gnome.tweaks.desktop': <{'position': <2>}>, 'gnome-language-selector.desktop': <{'position': <3>}>, 'org.gnome.SystemMonitor.desktop': <{'position': <4>}>, 'org.gnome.clocks.desktop': <{'position': <5>}>, 'update-manager.desktop': <{'position': <6>}>, 'gnome-session-properties.desktop': <{'position': <7>}>, 'org.gnome.font-viewer.desktop': <{'position': <8>}>, 'software-properties-drivers.desktop': <{'position': <9>}>, 'org.gnome.Evince.desktop': <{'position': <10>}>, 'org.gnome.Characters.desktop': <{'position': <11>}>, 'software-properties-gtk.desktop': <{'position': <12>}>, 'org.gnome.Contacts.desktop': <{'position': <13>}>}, {'Utilities': <{'position': <0>}>, 'org.gnome.PowerStats.desktop': <{'position': <1>}>, 'yelp.desktop': <{'position': <2>}>, 'ca.desrt.dconf-editor.desktop': <{'position': <3>}>, 'org.gnome.Console.desktop': <{'position': <4>}>, 'com.mattjakeman.ExtensionManager.desktop': <{'position': <5>}>, 'snap-store_snap-store.desktop': <{'position': <6>}>, 'org.gnome.Connections.desktop': <{'position': <7>}>, 'firefox_firefox.desktop': <{'position': <8>}>, 'firmware-updater_firmware-updater.desktop': <{'position': <9>}>, 'org.gnome.Pomodoro.desktop': <{'position': <10>}>}]
disable-user-extensions=false
disabled-extensions=['ding@rastersoft.com', 'ubuntu-dock@ubuntu.com', 'tiling-assistant@ubuntu.com', 'azclock@azclock.gitlab.com', 'quick-settings-tweaks@qwreey', 'quick-settings-avatar@d-go', 'arcmenu@arcmenu.com', 'dash2dock-lite@icedman.github.com', 'openbar@neuromorph', 'compact-quick-settings@gnome-shell-extensions.mariospr.org', 'apps-menu@gnome-shell-extensions.gcampax.github.com', 'ubuntu-appindicators@ubuntu.com']
enabled-extensions=['SettingsCenter@lauinger-clan.de', 'windowgestures@extension.amarullz.com', 'appindicatorsupport@rgcjonas.gmail.com', 'compiz-alike-magic-lamp-effect@hermes83.github.com', 'CoverflowAltTab@palatis.blogspot.com', 'dash-to-dock@micxgx.gmail.com', 'date-menu-formatter@marcinjakubowski.github.com', 'desktop-cube@schneegans.github.com', 'gsconnect@andyholmes.github.io', 'logomenu@aryan_k', 'media-progress@krypion17', 'order-extensions@wa4557.github.com', 'nightthemeswitcher@romainvigier.fr', 'moveclock@kuvaus.org', 'places-menu@gnome-shell-extensions.gcampax.github.com', 'power-profile-indicator@laux.wtf', 'search-light@icedman.github.com', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'just-perfection-desktop@just-perfection', 'blur-my-shell@aunetx', 'appmenu-is-back@fthx', 'pomodoro@arun.codito.in']
favorite-apps=['org.gnome.Nautilus.desktop', 'org.gnome.Maps.desktop', 'org.gnome.Software.desktop', 'org.gnome.Weather.desktop', 'org.gnome.eog.desktop', 'org.gnome.TextEditor.desktop', 'org.gnome.Calendar.desktop', 'org.gnome.gedit.desktop', 'org.gnome.Calculator.desktop', 'org.gnome.Settings.desktop']
last-selected-power-profile='power-saver'
welcome-dialog-last-shown-version='46.0'
[org/gnome/shell/extensions/Logo-menu]
hide-icon-shadow=false
menu-button-extensions-app='com.mattjakeman.ExtensionManager.desktop'
menu-button-icon-image=0
menu-button-icon-size=20
show-activities-button=true
show-lockscreen=true
show-power-options=true
symbolic-icon=true
use-custom-icon=false
[org/gnome/shell/extensions/blur-my-shell]
pipelines={'pipeline_default': {'name': <'Default'>, 'effects': <[<{'type': <'native_static_gaussian_blur'>, 'id': <'effect_000000000000'>, 'params': <{'radius': <30>, 'brightness': <0.59999999999999998>}>}>]>}, 'pipeline_default_rounded': {'name': <'Default rounded'>, 'effects': <[<{'type': <'native_static_gaussian_blur'>, 'id': <'effect_000000000001'>, 'params': <{'radius': <30>, 'brightness': <0.59999999999999998>}>}>, <{'type': <'corner'>, 'id': <'effect_000000000002'>, 'params': <{'radius': <30>, 'corners_top': <true>, 'corners_bottom': <true>}>}>]>}}
settings-version=2
[org/gnome/shell/extensions/blur-my-shell/appfolder]
blur=true
brightness=0.59999999999999998
sigma=30
[org/gnome/shell/extensions/blur-my-shell/applications]
blur=true
whitelist=['org.gnome.Nautilus', 'org.gnome.Console', 'org.gnome.Calculator']
[org/gnome/shell/extensions/blur-my-shell/dash-to-dock]
blur=true
brightness=0.59999999999999998
override-background=true
pipeline='pipeline_default_rounded'
sigma=30
static-blur=true
style-dash-to-dock=0
unblur-in-overview=false
[org/gnome/shell/extensions/blur-my-shell/dash-to-panel]
blur-original-panel=true
[org/gnome/shell/extensions/blur-my-shell/lockscreen]
pipeline='pipeline_default'
[org/gnome/shell/extensions/blur-my-shell/overview]
blur=true
pipeline='pipeline_default'
style-components=0
[org/gnome/shell/extensions/blur-my-shell/panel]
brightness=0.59999999999999998
force-light-text=true
override-background=true
override-background-dynamically=false
pipeline='pipeline_default'
sigma=30
static-blur=true
style-panel=0
[org/gnome/shell/extensions/blur-my-shell/screenshot]
pipeline='pipeline_default'
[org/gnome/shell/extensions/blur-my-shell/window-list]
brightness=0.59999999999999998
sigma=30
[org/gnome/shell/extensions/coverflowalttab]
animation-time=0.5
blur-radius=0
current-workspace-only='all'
enforce-primary-monitor=true
hide-panel=true
highlight-mouse-over=false
icon-has-shadow=false
icon-style='Classic'
invert-swipes=true
overlay-icon-opacity=0.75
perspective-correction-method='Adjust Angles'
preview-to-monitor-ratio=0.52300000000000002
randomize-animation-times=false
switch-application-behaves-like-switch-windows=false
switch-per-monitor=true
switcher-background-color=(0.031372549019607843, 0.37647058823529411, 0.94901960784313721)
switcher-looping-method='Carousel'
switcher-style='Coverflow'
use-glitch-effect=false
use-tint=false
[org/gnome/shell/extensions/dash-to-dock]
always-center-icons=false
apply-custom-theme=true
autohide=true
autohide-in-fullscreen=true
background-color='rgb(255,255,255)'
background-opacity=0.80000000000000004
click-action='focus-minimize-or-previews'
custom-background-color=false
custom-theme-shrink=true
dash-max-icon-size=48
disable-overview-on-startup=true
dock-fixed=false
dock-position='BOTTOM'
extend-height=false
height-fraction=0.90000000000000002
icon-size-fixed=true
intellihide=true
intellihide-mode='MAXIMIZED_WINDOWS'
middle-click-action='launch'
preferred-monitor=-2
preferred-monitor-by-connector='Virtual-1'
preview-size-scale=0.29999999999999999
running-indicator-style='DOTS'
shift-click-action='minimize'
shift-middle-click-action='launch'
show-apps-at-top=true
show-mounts-network=true
transparency-mode='DYNAMIC'
[org/gnome/shell/extensions/date-menu-formatter]
apply-all-panels=true
formatter='01_luxon'
pattern='EEE, d, hh:mm a'
text-align='right'
use-default-calendar=true
[org/gnome/shell/extensions/ding]
check-x11wayland=true
[org/gnome/shell/extensions/gsconnect]
id='9f582610-566c-47c5-b768-9b7b0fd82196'
name='linuxscoop'
[org/gnome/shell/extensions/just-perfection]
clock-menu-position=0
clock-menu-position-offset=0
controls-manager-spacing-size=0
notification-banner-position=2
osd-position=8
panel-button-padding-size=11
panel-indicator-padding-size=11
search=true
startup-status=0
theme=false
workspaces-in-app-grid=false
[org/gnome/shell/extensions/moveclock]
clock-before-statusmenu=false
[org/gnome/shell/extensions/ncom/github/hermes83/compiz-alike-magic-lamp-effect]
effect='default'
[org/gnome/shell/extensions/nightthemeswitcher/commands]
enabled=true
[org/gnome/shell/extensions/nightthemeswitcher/time]
manual-schedule=true
nightthemeswitcher-ondemand-keybinding=['<Shift><Super>t']
[org/gnome/shell/extensions/order-icons]
icons-blacklist=['ArcMenu']
order-icons-center=@as []
order-icons-left=['LogoMenu', 'activities', 'places-menu', 'appmenu-indicator']
order-icons-right=['686fd560-1c6c-11ef-823f-55c5a292da21', 'd343a980-1c6b-11ef-a0d7-896d89a1cdfb', 'c863bc00-1bd8-11ef-b856-33645d49c08c', 'a8aca1b0-1bd3-11ef-9fe0-7143877a2ff4', 'gnome-pomodoro', 'livepatch', 'software-update-available', 'a11y', 'keyboard', 'dwellClick', 'screenSharing', 'screenRecording', 'quickSettings', 'dateMenu']
[org/gnome/shell/extensions/search-light]
blur-background=true
blur-brightness=0.59999999999999998
blur-sigma=30.0
border-radius=3.384297520661157
border-thickness=0
currency-converter=true
entry-font-size=1
monitor-count=1
popup-at-cursor-monitor=true
preferred-monitor=0
scale-height=0.10000000000000001
scale-width=0.0
secondary-shortcut-search=['<Control><Super>space']
shortcut-search=['<Control>space']
show-panel-icon=false
unit-converter=true
[org/gnome/shell/extensions/user-theme]
name='WhiteSur-Light'
[org/gnome/shell/extensions/windowgestures]
three-finger=true
ui-theme=0
[org/gnome/shell/weather]
automatic-location=true
locations=[<(uint32 2, <('New York City, Central Park', 'KNYC', false, [(0.71180344078725644, -1.2909618758762367)], @a(dd) [])>)>]
[org/gnome/shell/world-clocks]
locations=@av []
[org/gnome/software]
check-timestamp=int64 1716508346
flatpak-purge-timestamp=int64 1716096087
[org/gnome/terminal/legacy]
theme-variant='system'
[org/gnome/terminal/legacy/profiles:]
default='7b4df471-ff52-4b7f-b8e7-0049c20e0a83'
list=['57fdd101-b1ed-4722-8584-7d69b977180b', '7b4df471-ff52-4b7f-b8e7-0049c20e0a83']
[org/gnome/terminal/legacy/profiles:/:57fdd101-b1ed-4722-8584-7d69b977180b]
allow-bold=true
background-color='#181816161616'
background-transparency-percent=7
bold-color='#C5C5C9C9C5C5'
bold-color-same-as-fg=true
cursor-background-color='#C8C8C0C09393'
cursor-colors-set=true
cursor-foreground-color='#181816161616'
custom-command='/bin/zsh'
font='MesloLGS NF 10'
foreground-color='#C5C5C9C9C5C5'
login-shell=false
palette=['#0D0D0C0C0C0C', '#C4C474746E6E', '#8A8A9A9A7B7B', '#C4C4B2B28A8A', '#8B8BA4A4B0B0', '#A2A29292A3A3', '#8E8EA4A4A2A2', '#C8C8C0C09393', '#A6A6A6A69C9C', '#E4E468687676', '#8787A9A98787', '#E6E6C3C38484', '#7F7FB4B4CACA', '#93938A8AA9A9', '#7A7AA8A89F9F', '#C5C5C9C9C5C5']
use-custom-command=true
use-system-font=false
use-theme-background=false
use-theme-colors=true
use-theme-transparency=false
use-transparent-background=true
visible-name='Kanagawa Dragon'
[org/gnome/terminal/legacy/profiles:/:7b4df471-ff52-4b7f-b8e7-0049c20e0a83]
allow-bold=true
background-color='#1F1F1F1F2828'
background-transparency-percent=4
bold-color='#DCDCD7D7BABA'
bold-color-same-as-fg=true
cursor-background-color='#DCDCD7D7BABA'
cursor-colors-set=true
cursor-foreground-color='#1F1F1F1F2828'
custom-command='/bin/zsh'
font='MesloLGS NF 10'
foreground-color='#DCDCD7D7BABA'
login-shell=false
palette=['#090906061818', '#C3C340404343', '#767694946A6A', '#C0C0A3A36E6E', '#7E7E9C9CD8D8', '#95957F7FB8B8', '#6A6A95958989', '#DCDCD7D7BABA', '#727271716969', '#E8E824242424', '#9898BBBB6C6C', '#E6E6C3C38484', '#7F7FB4B4CACA', '#93938A8AA9A9', '#7A7AA8A89F9F', '#C8C8C0C09393']
use-custom-command=true
use-system-font=false
use-theme-background=false
use-theme-colors=false
use-theme-transparency=false
use-transparent-background=true
visible-name='Kanagawa'
[org/gnome/terminal/legacy/profiles:/:cc6d05ce-8deb-4aec-b4b8-95c0b18e29d1]
allow-bold=true
use-theme-background=false
[org/gtk/gtk4/settings/color-chooser]
selected-color=(true, 1.0, 1.0, 1.0, 1.0)
[org/gtk/gtk4/settings/file-chooser]
date-format='regular'
location-mode='path-bar'
show-hidden=true
sidebar-width=140
sort-column='name'
sort-directories-first=true
sort-order='ascending'
type-format='category'
view-type='list'
window-size=(801, 822)

View File

@ -0,0 +1,507 @@
[apps/update-manager]
launch-count=1
launch-time=int64 1716009237
[ca/desrt/dconf-editor]
saved-pathbar-path='/'
saved-view='/'
show-warning=false
window-height=500
window-is-maximized=false
window-width=540
[com/mattjakeman/ExtensionManager]
is-maximized=false
last-used-version='0.5.0'
[com/ubuntu/update-notifier]
release-check-time=uint32 1715914293
[org/gnome/Console]
custom-font='FiraCode Nerd Font Mono 10'
last-window-maximised=false
last-window-size=(857, 511)
use-system-font=false
[org/gnome/Music]
window-maximized=false
window-size=[767, 668]
[org/gnome/Weather]
locations=[<(uint32 2, <('New York City, Central Park', 'KNYC', false, [(0.71180344078725644, -1.2909618758762367)], @a(dd) [])>)>]
window-height=497
window-maximized=false
window-width=707
[org/gnome/calculator]
accuracy=9
angle-units='degrees'
base=10
button-mode='basic'
number-format='automatic'
show-thousands=false
show-zeroes=false
source-currency=''
source-units='degree'
target-currency=''
target-units='radian'
window-maximized=false
window-size=(360, 506)
word-size=64
[org/gnome/calendar]
active-view='week'
window-maximized=false
window-size=(986, 600)
[org/gnome/clocks/state/window]
maximized=false
panel-id='world'
size=(870, 690)
[org/gnome/control-center]
last-panel='system'
window-state=(980, 640, true)
[org/gnome/desktop/app-folders]
folder-children=['Utilities', 'YaST', 'Pardus']
[org/gnome/desktop/app-folders/folders/Pardus]
categories=['X-Pardus-Apps']
name='X-Pardus-Apps.directory'
translate=true
[org/gnome/desktop/app-folders/folders/Utilities]
apps=['org.gnome.baobab.desktop', 'org.gnome.DiskUtility.desktop', 'org.gnome.seahorse.Application.desktop', 'org.gnome.Logs.desktop', 'avahi-discover.desktop']
categories=['X-GNOME-Utilities']
excluded-apps=['org.gnome.Console.desktop', 'org.gnome.Evince.desktop', 'org.gnome.Characters.desktop', 'nm-connection-editor.desktop', 'org.gnome.font-viewer.desktop']
name='X-GNOME-Utilities.directory'
translate=true
[org/gnome/desktop/app-folders/folders/YaST]
categories=['X-SuSE-YaST']
name='suse-yast.directory'
translate=true
[org/gnome/desktop/background]
color-shading-type='solid'
picture-options='zoom'
picture-uri='file:///usr/share/backgrounds/macosw/MacVentura-Light.jpg'
picture-uri-dark='file:///usr/share/backgrounds/macosw/MacVentura-Dark.jpg'
primary-color='#000000000000'
secondary-color='#000000000000'
[org/gnome/desktop/input-sources]
sources=[('xkb', 'us')]
xkb-options=@as []
[org/gnome/desktop/interface]
color-scheme='default'
cursor-theme='WhiteSur-cursors'
document-font-name='SF Pro Display 10'
enable-animations=true
font-hinting='full'
font-name='SF Pro Display 10'
gtk-theme='WhiteSur-Light'
icon-theme='WhiteSur-light'
monospace-font-name='MesloLGS NF 13'
toolkit-accessibility=false
[org/gnome/desktop/notifications]
application-children=['gnome-power-panel', 'org-gnome-calendar', 'firefox', 'com-mattjakeman-extensionmanager', 'org-gnome-settings']
[org/gnome/desktop/notifications/application/com-mattjakeman-extensionmanager]
application-id='com.mattjakeman.ExtensionManager.desktop'
[org/gnome/desktop/notifications/application/firefox]
application-id='firefox.desktop'
[org/gnome/desktop/notifications/application/gnome-power-panel]
application-id='gnome-power-panel.desktop'
[org/gnome/desktop/notifications/application/org-gnome-calendar]
application-id='org.gnome.Calendar.desktop'
[org/gnome/desktop/notifications/application/org-gnome-settings]
application-id='org.gnome.Settings.desktop'
[org/gnome/desktop/peripherals/keyboard]
numlock-state=true
[org/gnome/desktop/peripherals/touchpad]
two-finger-scrolling-enabled=true
[org/gnome/desktop/privacy]
old-files-age=uint32 30
recent-files-max-age=-1
[org/gnome/desktop/screensaver]
color-shading-type='solid'
picture-options='zoom'
picture-uri='file:///usr/share/backgrounds/macosw/MacVentura-Light.jpg'
primary-color='#000000000000'
secondary-color='#000000000000'
[org/gnome/desktop/search-providers]
disabled=['org.gnome.Characters.desktop', 'org.gnome.seahorse.Application.desktop']
sort-order=['org.gnome.Contacts.desktop', 'org.gnome.Documents.desktop', 'org.gnome.Nautilus.desktop']
[org/gnome/desktop/session]
idle-delay=uint32 300
[org/gnome/desktop/wm/preferences]
button-layout='close,maximize,minimize:'
[org/gnome/evolution-data-server]
migrated=true
[org/gnome/file-roller/listing]
list-mode='as-folder'
name-column-width=184
show-path=false
sort-method='name'
sort-type='ascending'
[org/gnome/file-roller/ui]
sidebar-width=200
window-height=480
window-width=600
[org/gnome/gnome-system-monitor]
show-dependencies=false
show-whose-processes='user'
[org/gnome/gnome-system-monitor/disktreenew]
col-6-visible=true
col-6-width=0
columns-order=[5]
sort-col=1
sort-order=0
[org/gnome/maps]
last-viewed-location=[0.0, 0.0]
map-type='MapsStreetSource'
transportation-type='pedestrian'
window-maximized=false
window-size=[682, 493]
zoom-level=2
[org/gnome/mutter]
center-new-windows=true
overlay-key='Super_L'
[org/gnome/mutter/keybindings]
toggle-tiled-left=@as []
toggle-tiled-right=@as []
[org/gnome/nautilus/icon-view]
default-zoom-level='medium'
[org/gnome/nautilus/preferences]
default-folder-viewer='icon-view'
migrated-gtk-settings=true
search-filter-time-type='last_modified'
[org/gnome/nautilus/window-state]
initial-size=(770, 513)
maximized=false
[org/gnome/nm-applet/eap/b2694852-f55e-3421-a3a8-3c368465ecb2]
ignore-ca-cert=false
ignore-phase2-ca-cert=false
[org/gnome/pomodoro/state]
timer-date='2024-05-24T01:55:24+0000'
timer-elapsed=0.0
timer-paused=false
timer-score=0.0
timer-state='null'
timer-state-date='2024-05-24T01:55:24+0000'
timer-state-duration=0.0
[org/gnome/portal/filechooser/gnome-background-panel]
last-folder-path='/usr/share/backgrounds/macosw'
[org/gnome/settings-daemon/plugins/power]
sleep-inactive-ac-timeout=3600
sleep-inactive-ac-type='nothing'
[org/gnome/shell]
app-picker-layout=[{'display-im6.q16.desktop': <{'position': <0>}>, 'nm-connection-editor.desktop': <{'position': <1>}>, 'org.gnome.tweaks.desktop': <{'position': <2>}>, 'gnome-language-selector.desktop': <{'position': <3>}>, 'org.gnome.SystemMonitor.desktop': <{'position': <4>}>, 'org.gnome.clocks.desktop': <{'position': <5>}>, 'update-manager.desktop': <{'position': <6>}>, 'gnome-session-properties.desktop': <{'position': <7>}>, 'org.gnome.font-viewer.desktop': <{'position': <8>}>, 'software-properties-drivers.desktop': <{'position': <9>}>, 'org.gnome.Evince.desktop': <{'position': <10>}>, 'org.gnome.Characters.desktop': <{'position': <11>}>, 'software-properties-gtk.desktop': <{'position': <12>}>, 'org.gnome.Contacts.desktop': <{'position': <13>}>}, {'Utilities': <{'position': <0>}>, 'org.gnome.PowerStats.desktop': <{'position': <1>}>, 'yelp.desktop': <{'position': <2>}>, 'ca.desrt.dconf-editor.desktop': <{'position': <3>}>, 'org.gnome.Console.desktop': <{'position': <4>}>, 'com.mattjakeman.ExtensionManager.desktop': <{'position': <5>}>, 'snap-store_snap-store.desktop': <{'position': <6>}>, 'org.gnome.Connections.desktop': <{'position': <7>}>, 'firefox_firefox.desktop': <{'position': <8>}>, 'firmware-updater_firmware-updater.desktop': <{'position': <9>}>, 'org.gnome.Pomodoro.desktop': <{'position': <10>}>}]
disable-user-extensions=false
disabled-extensions=['ding@rastersoft.com', 'ubuntu-dock@ubuntu.com', 'tiling-assistant@ubuntu.com', 'azclock@azclock.gitlab.com', 'quick-settings-tweaks@qwreey', 'quick-settings-avatar@d-go', 'arcmenu@arcmenu.com', 'dash2dock-lite@icedman.github.com', 'openbar@neuromorph', 'compact-quick-settings@gnome-shell-extensions.mariospr.org', 'apps-menu@gnome-shell-extensions.gcampax.github.com', 'ubuntu-appindicators@ubuntu.com']
enabled-extensions=['SettingsCenter@lauinger-clan.de', 'windowgestures@extension.amarullz.com', 'appindicatorsupport@rgcjonas.gmail.com', 'compiz-alike-magic-lamp-effect@hermes83.github.com', 'CoverflowAltTab@palatis.blogspot.com', 'dash-to-dock@micxgx.gmail.com', 'date-menu-formatter@marcinjakubowski.github.com', 'desktop-cube@schneegans.github.com', 'gsconnect@andyholmes.github.io', 'logomenu@aryan_k', 'media-progress@krypion17', 'order-extensions@wa4557.github.com', 'nightthemeswitcher@romainvigier.fr', 'moveclock@kuvaus.org', 'places-menu@gnome-shell-extensions.gcampax.github.com', 'power-profile-indicator@laux.wtf', 'search-light@icedman.github.com', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'just-perfection-desktop@just-perfection', 'blur-my-shell@aunetx', 'appmenu-is-back@fthx', 'pomodoro@arun.codito.in']
favorite-apps=['org.gnome.Nautilus.desktop', 'org.gnome.Maps.desktop', 'org.gnome.Software.desktop', 'org.gnome.Weather.desktop', 'org.gnome.eog.desktop', 'org.gnome.TextEditor.desktop', 'org.gnome.Calendar.desktop', 'org.gnome.gedit.desktop', 'org.gnome.Calculator.desktop', 'org.gnome.Settings.desktop']
last-selected-power-profile='power-saver'
welcome-dialog-last-shown-version='46.0'
[org/gnome/shell/extensions/Logo-menu]
hide-icon-shadow=false
menu-button-extensions-app='com.mattjakeman.ExtensionManager.desktop'
menu-button-icon-image=0
menu-button-icon-size=20
show-activities-button=true
show-lockscreen=true
show-power-options=true
symbolic-icon=true
use-custom-icon=false
[org/gnome/shell/extensions/blur-my-shell]
pipelines={'pipeline_default': {'name': <'Default'>, 'effects': <[<{'type': <'native_static_gaussian_blur'>, 'id': <'effect_000000000000'>, 'params': <{'radius': <30>, 'brightness': <0.59999999999999998>}>}>]>}, 'pipeline_default_rounded': {'name': <'Default rounded'>, 'effects': <[<{'type': <'native_static_gaussian_blur'>, 'id': <'effect_000000000001'>, 'params': <{'radius': <30>, 'brightness': <0.59999999999999998>}>}>, <{'type': <'corner'>, 'id': <'effect_000000000002'>, 'params': <{'radius': <30>, 'corners_top': <true>, 'corners_bottom': <true>}>}>]>}}
settings-version=2
[org/gnome/shell/extensions/blur-my-shell/appfolder]
blur=true
brightness=0.59999999999999998
sigma=30
[org/gnome/shell/extensions/blur-my-shell/applications]
blur=true
whitelist=['org.gnome.Nautilus', 'org.gnome.Console', 'org.gnome.Calculator']
[org/gnome/shell/extensions/blur-my-shell/dash-to-dock]
blur=true
brightness=0.59999999999999998
override-background=true
pipeline='pipeline_default_rounded'
sigma=30
static-blur=true
style-dash-to-dock=0
unblur-in-overview=false
[org/gnome/shell/extensions/blur-my-shell/dash-to-panel]
blur-original-panel=true
[org/gnome/shell/extensions/blur-my-shell/lockscreen]
pipeline='pipeline_default'
[org/gnome/shell/extensions/blur-my-shell/overview]
blur=true
pipeline='pipeline_default'
style-components=0
[org/gnome/shell/extensions/blur-my-shell/panel]
brightness=0.59999999999999998
force-light-text=true
override-background=true
override-background-dynamically=false
pipeline='pipeline_default'
sigma=30
static-blur=true
style-panel=0
[org/gnome/shell/extensions/blur-my-shell/screenshot]
pipeline='pipeline_default'
[org/gnome/shell/extensions/blur-my-shell/window-list]
brightness=0.59999999999999998
sigma=30
[org/gnome/shell/extensions/coverflowalttab]
animation-time=0.5
blur-radius=0
current-workspace-only='all'
enforce-primary-monitor=true
hide-panel=true
highlight-mouse-over=false
icon-has-shadow=false
icon-style='Classic'
invert-swipes=true
overlay-icon-opacity=0.75
perspective-correction-method='Adjust Angles'
preview-to-monitor-ratio=0.52300000000000002
randomize-animation-times=false
switch-application-behaves-like-switch-windows=false
switch-per-monitor=true
switcher-background-color=(0.031372549019607843, 0.37647058823529411, 0.94901960784313721)
switcher-looping-method='Carousel'
switcher-style='Coverflow'
use-glitch-effect=false
use-tint=false
[org/gnome/shell/extensions/dash-to-dock]
always-center-icons=false
apply-custom-theme=true
autohide=true
autohide-in-fullscreen=true
background-color='rgb(255,255,255)'
background-opacity=0.80000000000000004
click-action='focus-minimize-or-previews'
custom-background-color=false
custom-theme-shrink=true
dash-max-icon-size=48
disable-overview-on-startup=true
dock-fixed=false
dock-position='BOTTOM'
extend-height=false
height-fraction=0.90000000000000002
icon-size-fixed=true
intellihide=true
intellihide-mode='MAXIMIZED_WINDOWS'
middle-click-action='launch'
preferred-monitor=-2
preferred-monitor-by-connector='Virtual-1'
preview-size-scale=0.29999999999999999
running-indicator-style='DOTS'
shift-click-action='minimize'
shift-middle-click-action='launch'
show-apps-at-top=true
show-mounts-network=true
transparency-mode='DYNAMIC'
[org/gnome/shell/extensions/date-menu-formatter]
apply-all-panels=true
formatter='01_luxon'
pattern='EEE, d, hh:mm a'
text-align='right'
use-default-calendar=true
[org/gnome/shell/extensions/ding]
check-x11wayland=true
[org/gnome/shell/extensions/gsconnect]
id='9f582610-566c-47c5-b768-9b7b0fd82196'
name='linuxscoop'
[org/gnome/shell/extensions/just-perfection]
clock-menu-position=0
clock-menu-position-offset=0
controls-manager-spacing-size=0
notification-banner-position=2
osd-position=8
panel-button-padding-size=11
panel-indicator-padding-size=11
search=true
startup-status=0
theme=false
workspaces-in-app-grid=false
[org/gnome/shell/extensions/moveclock]
clock-before-statusmenu=false
[org/gnome/shell/extensions/ncom/github/hermes83/compiz-alike-magic-lamp-effect]
effect='default'
[org/gnome/shell/extensions/nightthemeswitcher/commands]
enabled=true
[org/gnome/shell/extensions/nightthemeswitcher/time]
manual-schedule=true
nightthemeswitcher-ondemand-keybinding=['<Shift><Super>t']
[org/gnome/shell/extensions/order-icons]
icons-blacklist=['ArcMenu']
order-icons-center=@as []
order-icons-left=['LogoMenu', 'activities', 'places-menu', 'appmenu-indicator']
order-icons-right=['686fd560-1c6c-11ef-823f-55c5a292da21', 'd343a980-1c6b-11ef-a0d7-896d89a1cdfb', 'c863bc00-1bd8-11ef-b856-33645d49c08c', 'a8aca1b0-1bd3-11ef-9fe0-7143877a2ff4', 'gnome-pomodoro', 'livepatch', 'software-update-available', 'a11y', 'keyboard', 'dwellClick', 'screenSharing', 'screenRecording', 'quickSettings', 'dateMenu']
[org/gnome/shell/extensions/search-light]
blur-background=true
blur-brightness=0.59999999999999998
blur-sigma=30.0
border-radius=3.384297520661157
border-thickness=0
currency-converter=true
entry-font-size=1
monitor-count=1
popup-at-cursor-monitor=true
preferred-monitor=0
scale-height=0.10000000000000001
scale-width=0.0
secondary-shortcut-search=['<Control><Super>space']
shortcut-search=['<Control>space']
show-panel-icon=false
unit-converter=true
[org/gnome/shell/extensions/tiling-assistant]
active-window-hint-color='rgb(211,70,21)'
last-version-installed=46
tiling-popup-all-workspace=true
[org/gnome/shell/extensions/user-theme]
name='WhiteSur-Light'
[org/gnome/shell/extensions/windowgestures]
three-finger=true
ui-theme=0
[org/gnome/shell/weather]
automatic-location=true
locations=[<(uint32 2, <('New York City, Central Park', 'KNYC', false, [(0.71180344078725644, -1.2909618758762367)], @a(dd) [])>)>]
[org/gnome/shell/world-clocks]
locations=@av []
[org/gnome/software]
check-timestamp=int64 1716508346
flatpak-purge-timestamp=int64 1716096087
[org/gnome/terminal/legacy]
theme-variant='system'
[org/gnome/terminal/legacy/profiles:]
default='7b4df471-ff52-4b7f-b8e7-0049c20e0a83'
list=['57fdd101-b1ed-4722-8584-7d69b977180b', '7b4df471-ff52-4b7f-b8e7-0049c20e0a83']
[org/gnome/terminal/legacy/profiles:/:57fdd101-b1ed-4722-8584-7d69b977180b]
allow-bold=true
background-color='#181816161616'
background-transparency-percent=7
bold-color='#C5C5C9C9C5C5'
bold-color-same-as-fg=true
cursor-background-color='#C8C8C0C09393'
cursor-colors-set=true
cursor-foreground-color='#181816161616'
custom-command='/bin/zsh'
font='MesloLGS NF 10'
foreground-color='#C5C5C9C9C5C5'
login-shell=false
palette=['#0D0D0C0C0C0C', '#C4C474746E6E', '#8A8A9A9A7B7B', '#C4C4B2B28A8A', '#8B8BA4A4B0B0', '#A2A29292A3A3', '#8E8EA4A4A2A2', '#C8C8C0C09393', '#A6A6A6A69C9C', '#E4E468687676', '#8787A9A98787', '#E6E6C3C38484', '#7F7FB4B4CACA', '#93938A8AA9A9', '#7A7AA8A89F9F', '#C5C5C9C9C5C5']
use-custom-command=true
use-system-font=false
use-theme-background=false
use-theme-colors=true
use-theme-transparency=false
use-transparent-background=true
visible-name='Kanagawa Dragon'
[org/gnome/terminal/legacy/profiles:/:7b4df471-ff52-4b7f-b8e7-0049c20e0a83]
allow-bold=true
background-color='#1F1F1F1F2828'
background-transparency-percent=4
bold-color='#DCDCD7D7BABA'
bold-color-same-as-fg=true
cursor-background-color='#DCDCD7D7BABA'
cursor-colors-set=true
cursor-foreground-color='#1F1F1F1F2828'
custom-command='/bin/zsh'
font='MesloLGS NF 10'
foreground-color='#DCDCD7D7BABA'
login-shell=false
palette=['#090906061818', '#C3C340404343', '#767694946A6A', '#C0C0A3A36E6E', '#7E7E9C9CD8D8', '#95957F7FB8B8', '#6A6A95958989', '#DCDCD7D7BABA', '#727271716969', '#E8E824242424', '#9898BBBB6C6C', '#E6E6C3C38484', '#7F7FB4B4CACA', '#93938A8AA9A9', '#7A7AA8A89F9F', '#C8C8C0C09393']
use-custom-command=true
use-system-font=false
use-theme-background=false
use-theme-colors=false
use-theme-transparency=false
use-transparent-background=true
visible-name='Kanagawa'
[org/gnome/terminal/legacy/profiles:/:cc6d05ce-8deb-4aec-b4b8-95c0b18e29d1]
allow-bold=true
use-theme-background=false
[org/gtk/gtk4/settings/color-chooser]
selected-color=(true, 1.0, 1.0, 1.0, 1.0)
[org/gtk/gtk4/settings/file-chooser]
date-format='regular'
location-mode='path-bar'
show-hidden=true
sidebar-width=140
sort-column='name'
sort-directories-first=true
sort-order='ascending'
type-format='category'
view-type='list'
window-size=(801, 822)

View File

@ -0,0 +1,76 @@
print_info() {
#info "\e[31m " users
info "\e[31m " kernel
info "\e[31m " uptime
info "\e[33m " packages
info "\e[33m " wm
info "\e[34m " shell
#info "\e[33m塞" memory
}
kernel_shorthand="off"
distro_shorthand="off"
os_arch="off"
uptime_shorthand="on"
memory_percent="off"
memory_unit="mib"
package_managers="on"
shell_path="on"
shell_version="off"
refresh_rate="off"
de_version="on"
colors=(distro)
bold="on"
underline_enabled="on"
underline_char="─"
separator=" •"
color_blocks="on"
block_width=3
block_height=1
col_offset="auto"
block_range=(0 7)
bar_char_elapsed="-"
bar_char_total="="
bar_border="on"
bar_length=15
bar_color_elapsed="distro"
bar_color_total="distro"
cpu_display="off"
memory_display="off"
battery_display="off"
disk_display="off"
# Backend Settings
image_backend="ascii"
image_source="$HOME/.config/neofetch/idk.txt"
# Ascii Options
ascii_distro="arch_small"
ascii_colors=(distro)
ascii_bold="on"
# Image Options
image_loop="off"
thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
crop_mode="normal"
crop_offset="center"
image_size="auto"
# Gap between image and text
gap=-2
# Image offsets
# Only works with the w3m backend.
yoffset=0
xoffset=0
# Image background color
# Only works with the w3m backend.
background_color=
# Misc
stdout="off"

View File

@ -0,0 +1,6 @@
\033[91m⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
\033[91m⣿⣿ ⣿⣿
\033[93m⣿⣿ ⣿ ⣿ ⣿⣿
\033[93m⣿⣿ ⣿ ⣿ ⣿⣿
\033[94m⣿⣿ ⣿ ⣿ ⣿⣿
\033[94m⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿

View File

@ -0,0 +1,226 @@
#!/bin/bash
#
# Script Name: install_fedora.sh
# Version : 1.0
# Description: Installation script auto customization
# GNOME 46 Look Like macOS on Fedora 40
#
# For Linux : Fedora 40
# For Desktop Environment : GNOME Shell 46
# Author: linuxscoop
# Youtube: https://youtube.com/user/linuxscoop
# Created: May 20, 2024
# Last Modified: June 07, 2024
#
# Update the system
update_system() {
clear
echo "Updating your system with new packages..."
sudo dnf update -y
}
# Install command line apps and dependencies
install_apps_and_dependencies() {
clear
echo "Installing command line apps and dependencies..."
sudo dnf install -y curl \
rsync \
git \
sassc \
openssl \
gnome-tweaks
}
# Install GNOME apps and dependencies
install_gnome_apps() {
clear
echo "Installing GNOME apps and dependencies..."
sudo dnf install -y gnome-weather \
gnome-maps \
gnome-audio \
gnome-calendar \
gnome-clocks \
gnome-connections \
gnome-console \
gnome-contacts \
gnome-music \
vlc \
gnome-shell-extension-pomodoro
}
# Install WhiteSur GTK theme and configure it
install_whitesur_gtk_theme() {
clear
echo "Installing WhiteSur GTK theme..."
mkdir -p src && cd src/ || { echo "Failed to create or enter src directory"; exit 1; }
if [ ! -d "WhiteSur-gtk-theme" ]; then
git clone https://github.com/vinceliuice/WhiteSur-gtk-theme.git || { echo "Failed to clone WhiteSur-gtk-theme repository"; exit 1; }
fi
cd WhiteSur-gtk-theme/ || { echo "Failed to enter WhiteSur-gtk-theme directory"; exit 1; }
./install.sh -l -c Light -c Dark -s 180 -m || { echo "Failed to execute install.sh"; exit 1; }
./tweaks.sh -d || { echo "Failed to execute tweaks.sh"; exit 1; }
cd ../../ || { echo "Failed to return to the previous directory"; exit 1; }
ln -sf "$HOME/.config/gtk-4.0/gtk-Light.css" "$HOME/.config/gtk-4.0/gtk.css"
echo "WhiteSur GTK theme installation completed."
}
# Install WhiteSur icon theme
install_whitesur_icon_theme() {
clear
echo "Installing WhiteSur icon theme..."
cd src/ || { echo "Failed to enter src directory"; exit 1; }
if [ ! -d "WhiteSur-icon-theme" ]; then
git clone https://github.com/vinceliuice/WhiteSur-icon-theme.git || { echo "Failed to clone WhiteSur-icon-theme repository"; exit 1; }
fi
cd WhiteSur-icon-theme/ || { echo "Failed to enter WhiteSur-icon-theme directory"; exit 1; }
./install.sh -a -b || { echo "Failed to execute install.sh"; exit 1; }
cd ../../ || { echo "Failed to return to the previous directory"; exit 1; }
echo "WhiteSur icon theme installation completed."
}
# Install WhiteSur Firefox theme
install_whitesur_firefox_theme() {
clear
echo "Installing WhiteSur Firefox theme..."
mkdir -p src && cd src/ || { echo "Failed to create or enter src directory"; exit 1; }
if [ ! -d "WhiteSur-firefox-theme" ]; then
git clone https://github.com/vinceliuice/WhiteSur-firefox-theme.git || { echo "Failed to clone WhiteSur-firefox-theme repository"; exit 1; }
fi
cd WhiteSur-firefox-theme/ || { echo "Failed to enter WhiteSur-firefox-theme directory"; exit 1; }
./install.sh -m || { echo "Failed to execute install.sh"; exit 1; }
cd ../../ || { echo "Failed to return to the previous directory"; exit 1; }
echo "WhiteSur Firefox theme installation completed."
}
# Install cursors theme
install_cursors_theme() {
clear
echo "Installing cursors theme..."
if [ -d $HOME/.icons ]; then
cp -af res/WhiteSur-cursors/ $HOME/.icons/
else
mkdir $HOME/.icons
cp -af res/WhiteSur-cursors/ $HOME/.icons/
fi
}
# Install fonts and wallpapers
install_fonts_and_wallpapers() {
clear
echo "Installing fonts and wallpapers..."
cp -af res/fonts/ $HOME/.local/share/
sudo cp -af res/macosw/ /usr/share/backgrounds/
sudo chmod 755 /usr/share/backgrounds/macosw
sudo chmod 644 /usr/share/backgrounds/macosw/*.*
}
# Install GNOME shell extensions
install_gnome_shell_extensions() {
clear
echo "Installing GNOME shell extensions..."
if [ -d $HOME/.local/share/gnome-shell/extensions ]; then
cp -af res/extensions/* $HOME/.local/share/gnome-shell/extensions/
else
mkdir -p $HOME/.local/share/gnome-shell/extensions
cp -af res/extensions/* $HOME/.local/share/gnome-shell/extensions/
fi
}
# Install Cava, Neofetch and their configurations
install_cava_neofetch() {
clear
echo "Installing Cava, Neofetch and their configurations..."
sudo dnf install -y cava neofetch
cp -af conf/cava/ $HOME/.config/
cp -af conf/neofetch/ $HOME/.config/
}
# Install Oh My Zsh
install_zsh_oh_my_zsh() {
clear
echo "Installing Oh My Zsh..."
sudo dnf install -y zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" <<EOF
Y
EOF
}
# Install Powerlevel10k theme
install_powerlevel10k_theme() {
clear
echo "Installing Powerlevel10k theme..."
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"
sed -i 's/ZSH_THEME="robbyrussell"/# ZSH_THEME="robbyrussell"\nZSH_THEME="powerlevel10k\/powerlevel10k"/' $HOME/.zshrc
sudo chsh -s "$(which zsh)" "$(whoami)"
find conf/ \( -name .p10k.zsh -o -name .zshrc \) -exec rsync -av {} $HOME/ \;
}
# Enable Flatpak and AppImage support, and add Flathub repository
enable_flatpak_and_appimage_support() {
clear
echo "Enabling Flatpak, AppImage support and adding Flathub repository..."
sudo dnf install -y gnome-software gnome-software-plugin-flatpak flatpak fuse
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
}
# Install Flatpak applications
install_flatpak_apps() {
clear
echo "Installing Flatpak applications..."
flatpak install -y flathub io.bassi.Amberol com.mattjakeman.ExtensionManager com.github.KRTirtho.Spotube
# make flatpak apps follow active theme
sudo flatpak override --filesystem=$HOME/.themes
sudo flatpak override --filesystem=$HOME/.local/share/icons
sudo flatpak override --filesystem=xdg-config/gtk-4.0
}
# Install Plymouth macOS theme
install_plymouth_macos_theme() {
clear
echo "Installing Plymouth macOS theme..."
sudo dnf install -y plymouth plymouth-theme-script -y
sudo cp -af res/macOS/ /usr/share/plymouth/themes/
sudo plymouth-set-default-theme -R macOS
}
# Restore GNOME Shell configuration
restore_gnome_shell_configuration() {
dconf load / < conf/gnome46-macos-fedora40.conf
}
# Prompt for confirmation to quit session and handle user's choice
prompt_for_logout() {
clear
read -p "Setup completed successfully. Please logout and log back in for changes to take effect. (y/n): " choice
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
echo "Logging out..."
gnome-session-quit --no-prompt
else
echo "Logout skipped. Please log out manually to apply the changes."
fi
}
# Main function to execute all steps
main() {
update_system
install_apps_and_dependencies
install_gnome_apps
install_gnome_shell_extensions
install_whitesur_gtk_theme
install_whitesur_icon_theme
install_whitesur_firefox_theme
install_cursors_theme
install_fonts_and_wallpapers
install_cava_neofetch
install_zsh_oh_my_zsh
install_powerlevel10k_theme
enable_flatpak_and_appimage_support
install_flatpak_apps
install_plymouth_macos_theme
restore_gnome_shell_configuration
prompt_for_logout
}
# Execute the main function
main

View File

@ -0,0 +1,304 @@
#!/bin/bash
#
# Script Name: install_ubuntu24.04.sh
# Version : 1.0
# Description: Installation script auto customization
# GNOME 46 Look Like macOS on Ubuntu 24.04
#
# For Linux : Ubuntu 24.04
# For Desktop Environment : GNOME Shell 46
# Author: linuxscoop
# Youtube: https://youtube.com/user/linuxscoop
# Created: May 20, 2024
# Last Modified: June 07, 2024
#
# update the system
update_system() {
clear
echo "Update your system with new packages.."
sudo apt update && sudo apt dist-upgrade -y
}
# remove snap apps and daemon, and prevent their reinstallation
remove_snap_and_prevent_reinstall() {
echo "Removing snap apps and snap daemon.."
# backup snap folder on $HOME
cp -af $HOME/snap/ src/
# Commands to remove snap apps and daemon
sudo snap remove --purge firefox
sudo snap remove --purge snap-store
sudo snap remove --purge gnome-42-2204
sudo snap remove --purge gtk-common-themes
sudo snap remove --purge snapd-desktop-integration
sudo snap remove --purge firmware-updater
sudo snap remove --purge core22
sudo snap remove --purge bare
sudo snap remove --purge snapd
sudo apt autoremove --remove snapd -y
sudo rm -rf /var/cache/snapd/
# Prevent snapd from being installed
echo "Package: snapd
Pin: release a=*
Pin-Priority: -10" | sudo tee /etc/apt/preferences.d/nosnap.pref
sudo apt update
}
install_firefox_from_mozilla_ppa() {
# Define the distro codename
distro_codename=$(lsb_release -cs)
# Add the Mozilla team PPA and update package lists
sudo add-apt-repository -y ppa:mozillateam/ppa
sudo apt update
# Install Firefox from the Mozilla team PPA
sudo apt install -y -t 'o=LP-PPA-mozillateam' firefox
# Allow unattended upgrades from the Mozilla team PPA
echo "Unattended-Upgrade::Allowed-Origins:: \"LP-PPA-mozillateam:$distro_codename\";" | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-firefox
# Set the pinning preferences for Firefox packages from the Mozilla team PPA
echo 'Package: firefox*
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 501' | sudo tee /etc/apt/preferences.d/mozillateamppa
# Update package lists again to apply pinning preferences
sudo apt update
# Restore firefox data from firefox snap
mkdir -p $HOME/.mozilla/firefox/ && cp -af src/snap/firefox/common/.mozilla/firefox/* ~/.mozilla/firefox/
}
# install apps and dependencies
install_apps_and_dependencies() {
clear
echo "Install Command Line Apps and dependencies.."
sudo apt install curl \
rsync \
git \
gdebi \
nautilus-admin \
nautilus-extension-gnome-terminal \
sassc \
gnome-tweaks \
gnome-shell-extension-manager -y
}
# install apps and dependencies
install_gnome_apps() {
clear
echo "Install GNOME Apps and Dependencies.."
sudo apt install gnome-weather \
gnome-maps \
gnome-audio \
gnome-calendar \
gnome-clocks \
gnome-connections \
gnome-console \
gnome-contacts \
gnome-music \
vlc \
gnome-shell-pomodoro -y
}
# Install WhiteSur GTK theme and configure it
install_whitesur_gtk_theme() {
clear
echo "Installing WhiteSur GTK theme..."
# Create src directory if it doesn't exist
mkdir -p src && cd src/ || { echo "Failed to create or enter src directory"; exit 1; }
# Clone the repository if it doesn't already exist
if [ ! -d "WhiteSur-gtk-theme" ]; then
git clone https://github.com/vinceliuice/WhiteSur-gtk-theme.git || { echo "Failed to clone WhiteSur-gtk-theme repository"; exit 1; }
fi
cd WhiteSur-gtk-theme/ || { echo "Failed to enter WhiteSur-gtk-theme directory"; exit 1; }
# Install the theme
./install.sh -l -c Light -c Dark -s 180 -m || { echo "Failed to execute install.sh"; exit 1; }
# Apply tweaks
./tweaks.sh -d || { echo "Failed to execute tweaks.sh"; exit 1; }
cd ../../ || { echo "Failed to return to the previous directory"; exit 1; }
# Enable WhiteSur GTK theme support for libadwaita apps - Light mode
ln -sf "$HOME/.config/gtk-4.0/gtk-Light.css" "$HOME/.config/gtk-4.0/gtk.css"
echo "WhiteSur GTK theme installation completed."
}
# Install WhiteSur icon theme
install_whitesur_icon_theme() {
clear
echo "Installing WhiteSur icon theme..."
cd src/ || { echo "Failed to enter src directory"; exit 1; }
# Clone the repository if it doesn't already exist
if [ ! -d "WhiteSur-icon-theme" ]; then
git clone https://github.com/vinceliuice/WhiteSur-icon-theme.git || { echo "Failed to clone WhiteSur-icon-theme repository"; exit 1; }
fi
cd WhiteSur-icon-theme/ || { echo "Failed to enter WhiteSur-icon-theme directory"; exit 1; }
# Install the icon theme
./install.sh -a -b || { echo "Failed to execute install.sh"; exit 1; }
cd ../../ || { echo "Failed to return to the previous directory"; exit 1; }
echo "WhiteSur icon theme installation completed."
}
# install WhiteSur Firefox Theme
install_whitesur_firefox_theme() {
clear
echo "Installing WhiteSur Firefox Theme..."
# Create src directory if it doesn't exist
mkdir -p src && cd src/ || { echo "Failed to create or enter src directory"; exit 1; }
# Clone the repository if it doesn't already exist
if [ ! -d "WhiteSur-firefox-theme" ]; then
git clone https://github.com/vinceliuice/WhiteSur-firefox-theme.git || { echo "Failed to clone WhiteSur-firefox-theme repository"; exit 1; }
fi
cd WhiteSur-firefox-theme/ || { echo "Failed to enter WhiteSur-firefox-theme directory"; exit 1; }
# Install the theme
./install.sh -m || { echo "Failed to execute install.sh"; exit 1; }
cd ../../ || { echo "Failed to return to the previous directory"; exit 1; }
echo "WhiteSur Firefox theme installation completed."
}
# install Cursors theme
install_cursors_theme() {
clear
echo "Install Cursors theme.."
if [ -d $HOME/.icons ]; then
cp -af res/WhiteSur-cursors/ $HOME/.icons/
else
mkdir $HOME/.icons
cp -af res/WhiteSur-cursors/ $HOME/.icons/
fi
}
# Install fonts and wallpapers
install_fonts_and_wallpapers() {
clear
echo "Install Fonts and wallpapers.."
cp -af res/fonts/ $HOME/.local/share/
# Install Wallpaper to /usr/share/backgrounds/
sudo cp -af res/macosw/ /usr/share/backgrounds/
sudo chmod 755 /usr/share/backgrounds/macosw
sudo chmod 644 /usr/share/backgrounds/macosw/*.*
}
# install GNOME Shell Extensions
install_gnome_shell_extensions() {
clear
echo "Install GNOME Shell Extensions.."
if [ -d $HOME/.local/share/gnome-shell/extensions ]; then
cp -af res/extensions/* $HOME/.local/share/gnome-shell/extensions/
else
mkdir -p $HOME/.local/share/gnome-shell/extensions
cp -af res/extensions/* $HOME/.local/share/gnome-shell/extensions/
fi
}
# install Cava, Neofetch and their configurations
install_cava_neofetch() {
clear
echo "Install Cava, Neofetch and Configuration.."
sudo apt install cava -y
# Install Cava Config
cp -af conf/cava/ $HOME/.config/
# Install Neofetch
sudo apt install neofetch -y
# Install Neofetch Config
cp -af conf/neofetch/ $HOME/.config/
}
# Function to install Oh My Zsh
install_zsh_oh_my_zsh() {
clear
echo "Install Oh My Zsh.."
sudo apt install zsh -y
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" <<EOF
Y
EOF
}
# install Powerlevel10k theme
install_powerlevel10k_theme() {
clear
echo "Install Powerlevel10k theme.."
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"
# Add or update the ZSH_THEME line in ~/.zshrc
sed -i 's/ZSH_THEME="robbyrussell"/# ZSH_THEME="robbyrussell"\nZSH_THEME="powerlevel10k\/powerlevel10k"/' $HOME/.zshrc
# Change the shell to Zsh
sudo chsh -s "$(which zsh)" "$(whoami)"
# Sync zsh shell configuration files to the home directory
find conf/ \( -name .p10k.zsh -o -name .zshrc \) -exec rsync -av {} $HOME/ \;
}
# enable Flatpak, Appimage Support and add Flathub Repository
enable_flatpak_and_appimage_support() {
clear
echo "Enable Flatpak, Appimage Support and Add Flathub Repository.."
sudo apt install gnome-software gnome-software-plugin-flatpak flatpak libfuse2 -y
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
}
# install Flatpak applications
install_flatpak_apps() {
clear
echo "Install Flatpak Applications.."
flatpak install flathub io.bassi.Amberol # net.agalwood.Motrix com.rafaelmardojai.Blanket com.github.KRTirtho.Spotube
# Enable WhiteSur GTK theme support for flatpak
sudo flatpak override --filesystem=$HOME/.themes
sudo flatpak override --filesystem=$HOME/.local/share/icons
sudo flatpak override --filesystem=xdg-config/gtk-4.0
}
# install Plymouth macOS theme
install_plymouth_macos_theme() {
clear
echo "Install Plymouth macOS Theme.."
sudo apt install plymouth -y
# Copy Plymouth theme to /usr/share/plymouth/themes
sudo cp -af res/macOS/ /usr/share/plymouth/themes/
# Set Plymouth theme
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/macOS/macOS.plymouth 100
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
}
# restore GNOME Shell Configuration
restore_gnome_shell_configuration() {
dconf load / < conf/gnome46-macos-ubuntu2404.conf
}
# Prompt for confirmation to quit session and handle user's choice
prompt_for_logout() {
clear
read -p "Setup completed successfully. Please logout and log back in for changes to take effect.(y/n): " choice
# Check user's choice
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
# Logout
gnome-session-quit --logout
else
clear
echo "No changes made. You can manually logout and log back in later."
fi
}
#start from here..
update_system
install_apps_and_dependencies
install_gnome_shell_extensions
install_whitesur_gtk_theme
install_whitesur_icon_theme
install_cursors_theme
install_fonts_and_wallpapers
install_cava_neofetch
install_zsh_oh_my_zsh
install_powerlevel10k_theme
enable_flatpak_and_appimage_support
install_flatpak_apps
install_gnome_apps
install_plymouth_macos_theme
restore_gnome_shell_configuration
#Ask user for confirmation to remove snap apps and daemon
clear
read -p "Remove snap apps and daemon recursively from your system and install firefox browser from Mozilla Repository [y/n]: " answer
if [[ "$answer" == "y" || "$answer" == "Y" ]]; then
remove_snap_and_prevent_reinstall
install_firefox_from_mozilla_ppa
install_whitesur_firefox_theme
sudo apt clean
clear
echo "DON'T FORGET: Run 'firefox -p' in the terminal. If you restore Firefox profile from Firefox Snap to New Firefox (DEB)"
read -p "Press any key to continue..."
clear
prompt_for_logout
else
prompt_for_logout
fi

View File

@ -0,0 +1 @@
default

View File

@ -0,0 +1 @@
not-allowed

View File

@ -0,0 +1 @@
dnd-move

View File

@ -0,0 +1 @@
crosshair

View File

@ -0,0 +1 @@
not-allowed

View File

@ -0,0 +1 @@
copy

View File

@ -0,0 +1 @@
dnd-move

View File

@ -0,0 +1 @@
size_hor

View File

@ -0,0 +1 @@
no-drop

View File

@ -0,0 +1 @@
openhand

View File

@ -0,0 +1 @@
dnd-move

View File

@ -0,0 +1 @@
size_hor

View File

@ -0,0 +1 @@
progress

View File

@ -0,0 +1 @@
pointer

View File

@ -0,0 +1 @@
pointer

View File

@ -0,0 +1 @@
text

View File

@ -0,0 +1 @@
default

View File

@ -0,0 +1 @@
progress

View File

@ -0,0 +1 @@
alias

View File

@ -0,0 +1 @@
bottom_left_corner

View File

@ -0,0 +1 @@
bottom_right_corner

View File

@ -0,0 +1 @@
dnd-move

View File

@ -0,0 +1 @@
size_ver

View File

@ -0,0 +1 @@
top_right_corner

View File

@ -0,0 +1 @@
size_bdiag

View File

@ -0,0 +1 @@
top_left_corner

View File

@ -0,0 +1 @@
size_fdiag

View File

@ -0,0 +1 @@
cell

View File

@ -0,0 +1 @@
pointer

View File

@ -0,0 +1 @@
size_ver

View File

@ -0,0 +1 @@
bottom_right_corner

View File

@ -0,0 +1 @@
fleur

Some files were not shown because too many files have changed in this diff Show More