From 17cce8108ea305351d1c87eea535597483e39b93 Mon Sep 17 00:00:00 2001 From: Josue Zamudio Date: Thu, 22 Jan 2026 09:20:42 -0800 Subject: [PATCH] feat: common zshconfig; fix: hyprland config multimonitors --- .config/hypr/hyprland.conf | 14 ++++++++------ .zshrc | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 6 deletions(-) create mode 100644 .zshrc diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index e00f356..5c39104 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -23,8 +23,11 @@ autogenerated = 0 # remove this line to remove the warning ################ # See https://wiki.hypr.land/Configuring/Monitors/ -monitor=,preferred,auto,auto -exec-once = swaybg -i /usr/share/backgrounds/gnome/vnc-d.png +monitor=,preferred,auto,auto, +workspace=1, monitor:DP-2 +workspace=10, monitor:DP-3 +exec-once=hyperctl dispatch workspace 10 +exec-once=hyperctl dispatch workspace 1 ################### @@ -55,7 +58,6 @@ exec-once = shikane & exec-once = waybar -c ~/.config/hypr/waybar/config.jsonc -s ~/.config/hypr/waybar/style.css & exec-once = hyprpm reload -n exec-once = flatpak run com.github.wwmm.easyeffects -w -exec-once = powertop --auto-tune exec-once = systemctl --user start hyprpolkitagent @@ -116,7 +118,7 @@ general { # https://wiki.hypr.land/Configuring/Variables/#decoration decoration { - rounding = 6 + rounding = 4 rounding_power = 2 # Change transparency of focused and unfocused windows @@ -196,8 +198,8 @@ master { # https://wiki.hypr.land/Configuring/Variables/#misc misc { - force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers - disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :( + force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers + disable_hyprland_logo = true# If true disables the random hyprland logo / anime girl background. :( } diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..b6837f9 --- /dev/null +++ b/.zshrc @@ -0,0 +1,20 @@ +# Auto Complete +autoload -Uz compinit +compinit + + +# Alias +alias vim='nvim' + +# Config +source <(fzf --zsh) + + +autoload -Uz vcs_info +precmd_vcs_info() { vcs_info } +precmd_functions+=( precmd_vcs_info ) +setopt prompt_subst +RPROMPT='${vcs_info_msg_0_}' +#PROMPT='${vcs_info_msg_0_}%# ' +PROMPT='%~%# ' +zstyle ':vcs_info:git:*' formats '%b'