diff --git a/files/.config/helix/config.toml b/files/.config/helix/config.toml index 45893ab..ba82204 100644 --- a/files/.config/helix/config.toml +++ b/files/.config/helix/config.toml @@ -1,4 +1,4 @@ -theme = "onedark" +theme = "iroaseta" [editor] line-number = "relative" diff --git a/files/.config/hypr/hyprland.conf b/files/.config/hypr/hyprland.conf index bc4e29b..c4b3364 100644 --- a/files/.config/hypr/hyprland.conf +++ b/files/.config/hypr/hyprland.conf @@ -64,10 +64,11 @@ input { general { # See https://wiki.hyprland.org/Configuring/Variables/ for more - gaps_in = 5 - gaps_out = 20 + gaps_in = 2 + gaps_out = 8 border_size = 2 - col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg + + col.active_border = rgba(0077B3bb) 1deg col.inactive_border = rgba(595959aa) layout = dwindle @@ -79,18 +80,16 @@ general { decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more - rounding = 10 + rounding = 12 blur { enabled = false - size = 3 - passes = 1 } - #drop_shadow = yes - #shadow_range = 4 - #shadow_render_power = 3 - #col.shadow = rgba(1a1a1aee) + shadow { + enabled = false + } + } animations { @@ -100,12 +99,17 @@ animations { bezier = myBezier, 0.05, 0.9, 0.1, 1.05 - animation = windows, 1, 2, myBezier - animation = windowsOut, 1, 2, default, popin 80% - animation = border, 1, 2, default - animation = borderangle, 1, 2, default - animation = fade, 1, 2, default - animation = workspaces, 1, 2, myBezier + animation = workspaces, 1, 1.5, default, slidefade + animation = windows, 1, 1.5, default, gnomed + animation = fade, 1, 4, default + + + # animation = windows, 1, 2, myBezier + # animation = windowsOut, 1, 2, default, popin 80% + # animation = border, 1, 2, default + # animation = borderangle, 1, 2, default + # animation = fade, 1, 2, default + # animation = workspaces, 1, 2, myBezier } dwindle { @@ -139,7 +143,7 @@ device { sensitivity = -0.5 } -monitor = , preferred, auto, 1.2 +monitor = , preferred, auto, 1.33 xwayland { force_zero_scaling = true } @@ -152,7 +156,7 @@ xwayland { windowrulev2 = suppressevent maximize, class:.* # You'll probably like this. windowrulev2 = float,class:^(com\.github\.hluk\.copyq)$ -windowrulev2 = float,class:^(\.blueman-manager-wrapped)$ +windowrulev2 = float,class:^(\.?blueman-manager*)$ windowrulev2 = float,class:^(org\.pulseaudio\.pavucontrol)$ windowrulev2 = float,initialTitle:^(.*)(wants to save)$ windowrulev2 = float,initialTitle:^(Open File)$ diff --git a/sway-config b/files/.config/sway/config similarity index 100% rename from sway-config rename to files/.config/sway/config diff --git a/files/.config/systemd/user/sshagent.service b/files/.config/systemd/user/sshagent.service deleted file mode 100644 index 9428410..0000000 --- a/files/.config/systemd/user/sshagent.service +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=SSH key agent - -[Service] -Type=simple -Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket -ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK - -[Install] -WantedBy=default.target diff --git a/waybar-config b/files/.config/waybar/config similarity index 100% rename from waybar-config rename to files/.config/waybar/config diff --git a/install b/install index 4985650..d9c48ae 100755 --- a/install +++ b/install @@ -30,7 +30,7 @@ if command -v gsettings &> /dev/null; then gsettings set org.gnome.desktop.interface cursor-theme Adwaita fi -systemctl enable --now --user sshagent.service &> /dev/null +systemctl enable --now --user ssh-agent.service &> /dev/null systemctl enable --user rclonesync.service &> /dev/null systemctl enable --now --user rclonesync.timer &> /dev/null diff --git a/setup b/setup index 85be1e9..9533839 100755 --- a/setup +++ b/setup @@ -112,15 +112,19 @@ if [[ $distro == "arch linux" ]]; then yay --noconfirm --needed -S "${yay[@]}" - sudo ln -s /var/lib/snapd/snap /snap + if [[ ! -e /snap ]]; then + sudo ln -s /var/lib/snapd/snap /snap + fi - for item in "${systemd[@]}"; do + for item in ${systemd[@]}; do sudo systemctl enable --now $item done while ! sudo snap refresh; do sleep 1; done - sudo snap install "${snap_classic[@]}" --classic + for prog in ${snap_classic[@]}; do + sudo snap install $prog --classic + done flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo flatpak install -y "${flatpak[@]}" @@ -134,6 +138,7 @@ else exit 1 fi +echo "-" "$DIR/install" echo "-"