feat: common zshconfig; fix: hyprland config multimonitors
This commit is contained in:
@@ -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. :(
|
||||
}
|
||||
|
||||
|
||||
|
||||
20
.zshrc
Normal file
20
.zshrc
Normal file
@@ -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'
|
||||
Reference in New Issue
Block a user