Compare commits

...

2 commits

Author SHA1 Message Date
gaitas13
5d524ce1a2 mpv 2025-09-14 01:39:19 +02:00
gaitas13
130064db3b updated doom, hyprland, sway, zed and mpv 2025-09-14 01:32:21 +02:00
29 changed files with 176 additions and 63 deletions

View file

@ -32,10 +32,13 @@
;; There are two ways to load a theme. Both assume the theme is installed and ;; There are two ways to load a theme. Both assume the theme is installed and
;; available. You can either set `doom-theme' or manually load a theme with the ;; available. You can either set `doom-theme' or manually load a theme with the
;; `load-theme' function. This is the default: ;; `load-theme' function. This is the default:
(setq doom-theme 'doom-one) (setq doom-theme 'catppuccin)
(setq catppuccin-flavor 'macchiato)
;; This determines the style of line numbers in effect. If set to `nil', line ;; This determines the style of line numbers in effect. If set to `nil', line
;; numbers are disabled. For relative line numbers, set this to `relative'. ;; numbers are disabled. For relative line numbers, set this to `relative'.
(global-visual-line-mode 1)
(global-display-line-numbers-mode 1)
(setq display-line-numbers-type t) (setq display-line-numbers-type t)
;; If you use `org' and don't want your org files in the default location below, ;; If you use `org' and don't want your org files in the default location below,
@ -75,5 +78,8 @@
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
;; they are implemented. ;; they are implemented.
(setq doom-theme 'catppuccin)
(setq catppuccin-flavor 'macchiato)
(setq projectile-project-search-path '(("~/Documents/0_mycode" . 1)))

View file

@ -21,13 +21,13 @@
# mfact = 0.5 # mfact = 0.5
#} #}
source = $HOME/.config/hypr/UserConfigs/gaps.d/gaps.conf
general { general {
# sensitivity=1.00 # sensitivity=1.00
# apply_sens_to_raw=1 # apply_sens_to_raw=1
gaps_in = 4
gaps_out = 8
border_size = 2
resize_on_border = true
#col.active_border = $color0 $color2 $color4 $color6 $color8 90deg #col.active_border = $color0 $color2 $color4 $color6 $color8 90deg
#col.inactive_border = $backgroundCol #col.inactive_border = $backgroundCol
@ -43,60 +43,11 @@ group {
} }
} }
decoration { source = $HOME/.config/hypr/UserConfigs/UserSettingsDecoration.conf
rounding = 12
active_opacity = 1.0
inactive_opacity = 0.9
fullscreen_opacity = 1.0
dim_inactive = true
dim_strength = 0.1
#battery culprit 1
shadow {
enabled=false
range=5
render_power=2
#color= $color2
#color_inactive = 0x50000000
}
#battery culprit 2
blur {
# either 4 at 2 passes or 7 at 1
enabled = true
size = 7
passes = 1
ignore_opacity = true
new_optimizations = true
noise = 0.20
}
}
animations { source = $HOME/.config/hypr/UserConfigs/animations.d/animations.conf
enabled = yes
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
bezier = linear, 0.0, 0.0, 1.0, 1.0
bezier = wind, 0.05, 0.9, 0.1, 1.05
bezier = winIn, 0.1, 1.1, 0.1, 1.1
bezier = winOut, 0.3, -0.3, 0, 1
bezier = slow, 0, 0.85, 0.3, 1
bezier = overshot, 0.7, 0.6, 0.1, 1.1
bezier = bounce, 1.1, 1.6, 0.1, 0.85
bezier = sligshot, 1, -1, 0.15, 1.25
bezier = nice, 0, 6.9, 0.5, -4.20
animation = windowsIn, 1, 5, slow, popin
animation = windowsOut, 1, 5, winOut, popin
animation = windowsMove, 1, 5, wind, slide
animation = border, 1, 10, linear
animation = borderangle, 1, 180, linear, loop #used by rainbow borders and rotating colors
animation = fade, 1, 5, overshot
animation = workspaces, 1, 5, wind
animation = windows, 1, 5, bounce, popin
}
input { input {
kb_layout=es,us kb_layout=es,us

View file

@ -0,0 +1,9 @@
source = $HOME/.config/hypr/UserConfigs/graphics.d/window.conf
source = $HOME/.config/hypr/UserConfigs/graphics.d/border-radius.conf
#battery culprit 1
source = $HOME/.config/hypr/UserConfigs/graphics.d/shadow.conf
#battery culprit 2
source = $HOME/.config/hypr/UserConfigs/graphics.d/blur.conf

View file

@ -0,0 +1,23 @@
animations {
enabled = yes
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
bezier = linear, 0.0, 0.0, 1.0, 1.0
bezier = wind, 0.05, 0.9, 0.1, 1.05
bezier = winIn, 0.1, 1.1, 0.1, 1.1
bezier = winOut, 0.3, -0.3, 0, 1
bezier = slow, 0, 0.85, 0.3, 1
bezier = overshot, 0.7, 0.6, 0.1, 1.1
bezier = bounce, 1.1, 1.6, 0.1, 0.85
bezier = sligshot, 1, -1, 0.15, 1.25
bezier = nice, 0, 6.9, 0.5, -4.20
animation = windowsIn, 1, 5, slow, popin
animation = windowsOut, 1, 5, winOut, popin
animation = windowsMove, 1, 5, wind, slide
animation = border, 1, 10, linear
animation = borderangle, 1, 180, linear, loop #used by rainbow borders and rotating colors
animation = fade, 1, 5, overshot
animation = workspaces, 1, 5, wind
animation = windows, 1, 5, bounce, popin
}

View file

@ -0,0 +1 @@
animations-default.conf

View file

@ -0,0 +1,6 @@
general{
gaps_in = 4
gaps_out = 8
border_size = 2
resize_on_border = true
}

View file

@ -0,0 +1 @@
gaps-default.conf

View file

@ -0,0 +1,6 @@
decoration{
blur {
enabled = false
}
}

View file

@ -0,0 +1,12 @@
decoration{
blur {
# either 4 at 2 passes or 7 at 1
enabled = true
size = 7
passes = 1
ignore_opacity = true
new_optimizations = true
noise = 0.20
}
}

View file

@ -0,0 +1 @@
blur-yes.conf

View file

@ -0,0 +1,3 @@
decoration{
rounding = 0
}

View file

@ -0,0 +1,3 @@
decoration{
rounding = 12
}

View file

@ -0,0 +1 @@
border-radius-yes.conf

View file

@ -0,0 +1,6 @@
decoration{
shadow {
enabled=false
}
}

View file

@ -0,0 +1,10 @@
decoration{
shadow {
enabled=true
range=5
render_power=2
#color= $color2
#color_inactive = 0x50000000
}
}

View file

@ -0,0 +1 @@
shadow-no.conf

View file

@ -0,0 +1,7 @@
decoration{
active_opacity = 1.0
inactive_opacity = 0.9
fullscreen_opacity = 1.0
dim_inactive = true
dim_strength = 0.1
}

View file

@ -0,0 +1 @@
window-default.conf

View file

@ -72,7 +72,7 @@ screenshot-template="mpv-shot-%tY-%tm-%td_%tH-%tM-%tS"
screenshot-directory="~/Pictures/mpv" screenshot-directory="~/Pictures/mpv"
screenshot-png-compression=9 screenshot-png-compression=7
screenshot-png-filter=0 screenshot-png-filter=0
@ -165,8 +165,10 @@ hwdec=auto-safe
#bwdif is now the fallback deinterlacer, but only vulkan has bwdif hw deinterlacing #bwdif is now the fallback deinterlacer, but only vulkan has bwdif hw deinterlacing
#hwdec=vulkan #hwdec=vulkan
#hwdec=vulkan-copy #hwdec=vulkan-copy

1
.config/sway/blur Symbolic link
View file

@ -0,0 +1 @@
graphics.d/blur-yes

View file

@ -0,0 +1,26 @@
set $rosewater #f4dbd6
set $flamingo #f0c6c6
set $pink #f5bde6
set $mauve #c6a0f6
set $red #ed8796
set $maroon #ee99a0
set $peach #f5a97f
set $yellow #eed49f
set $green #a6da95
set $teal #8bd5ca
set $sky #91d7e3
set $sapphire #7dc4e4
set $blue #8aadf4
set $lavender #b7bdf8
set $text #cad3f5
set $subtext1 #b8c0e0
set $subtext0 #a5adcb
set $overlay2 #939ab7
set $overlay1 #8087a2
set $overlay0 #6e738d
set $surface2 #5b6078
set $surface1 #494d64
set $surface0 #363a4f
set $base #24273a
set $mantle #1e2030
set $crust #181926

View file

@ -3,11 +3,11 @@
### Variables ### Variables
# Logo key. Use Mod1 for Alt. # Logo key. Use Mod1 for Alt.
set $mod Mod4 set $mod mod4
#set $background ~/Pictures/wallpaper/arch.jpg #set $background ~/Pictures/wallpaper/arch.jpg
# Your preferred terminal emulator # Your preferred terminal emulator
set $term kitty set $term ghostty
# Your preferred application launcher # Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened # Note: pass the final command to swaymsg so that the resulting window can be opened
@ -21,6 +21,7 @@ set $menu rofi -show drun
# Start your launcher # Start your launcher
bindsym $mod+d exec $menu|xargs swaymsg exec -- bindsym $mod+d exec $menu|xargs swaymsg exec --
bindsym --release Super_L exec $menu|xargs swaymsg exec --
# Home row direction keys, like vim # Home row direction keys, like vim
set $left h set $left h
@ -361,4 +362,14 @@ exec pavucontrol-qt
#GTK+ apps long time to load fix #GTK+ apps long time to load fix
exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
#swayfx
include $HOME/.config/sway/blur
include $HOME/.config/sway/corner
include /etc/sway/config.d/* include /etc/sway/config.d/*

1
.config/sway/corner Symbolic link
View file

@ -0,0 +1 @@
graphics.d/corner-radius-yes

View file

View file

@ -0,0 +1,5 @@
blur enable
blur_xray disable
blur_passes 1
blur_radius 7
blur_noise 0.20

View file

View file

@ -0,0 +1 @@
corner_radius 12

18
.config/zed/settings.json Executable file
View file

@ -0,0 +1,18 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"ui_font_size": 16,
"buffer_font_size": 16,
"soft_wrap": "bounded",
"theme": {
"mode": "system",
"light": "Catppuccin Macchiato",
"dark": "Catppuccin Macchiato"
}
}