diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 77e9465..436b042 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -24,8 +24,8 @@ # See https://wiki.hyprland.org/Configuring/Monitors/ monitor = eDP-1, disable # laptop built in screen -monitor = DP-1, preferred, 0x0, 1 # LG DualUp -monitor = DP-2, preferred, -3840x0, 1 # AOC 4k +monitor = DP-1, preferred, 0x0, 1 # AOC 4k +monitor = DP-2, preferred, auto, 1 # LG DualUp ################### ### MY PROGRAMS ### @@ -287,7 +287,7 @@ bindl = , XF86AudioPrev, exec, playerctl previous # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more # See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules -workspace = 10,monitor:DP-1 +workspace = 10,monitor:DP-2 # Example windowrule # windowrule = float,class:^(kitty)$,title:^(kitty)$ diff --git a/waybar/config.jsonc b/waybar/config.jsonc index 61a3490..b4b9a1e 100755 --- a/waybar/config.jsonc +++ b/waybar/config.jsonc @@ -1,44 +1,39 @@ // -*- mode: jsonc -*- { - "layer": "top", // Waybar at top layer - "position": "top", // Waybar position (top|bottom|left|right) - //"height": 46,// Waybar height (to be removed for auto height) - "width": 1900, // Waybar width - "spacing": 2, // Gaps between modules (4px) - // Choose the order of the modules - "modules-left": [ - "custom/arch", - //"custom/search", - "cpu", - "memory", - "temperature", - "battery", - "power-profiles-daemon", - "custom/cava_mviz", - "mpris", - //"wlr/taskbar" - "hyprland/window" - - ], - "modules-center": [ - "hyprland/workspaces" - ], - "modules-right": [ - "idle_inhibitor", - "pulseaudio", - "backlight", - "network#speed", - "network", - "bluetooth", - "hyprland/language", - "tray", - "custom/swaync", - "clock", - "custom/power" - ], - //Modules configuration - - "include": [ - "~/.config/waybar/modules.json" - ] + "layer": "top", // Waybar at top layer + "position": "top", // Waybar position (top|bottom|left|right) + //"height": 46,// Waybar height (to be removed for auto height) + "width": 2460, // Waybar width + "spacing": 2, // Gaps between modules (4px) + // Choose the order of the modules + "modules-left": [ + "custom/arch", + //"custom/search", + "cpu", + "memory", + "temperature", + "battery", + "power-profiles-daemon", + "custom/cava_mviz", + "mpris", + //"wlr/taskbar" + "hyprland/window", + ], + "modules-center": ["hyprland/workspaces"], + "modules-right": [ + "idle_inhibitor", + "pulseaudio", + "backlight", + "network#speed", + "network", + "bluetooth", + "hyprland/language", + "tray", + "custom/swaync", + "clock", + "custom/power", + ], + //Modules configuration + + "include": ["~/.config/waybar/modules.json"], } diff --git a/zsh/.histfile b/zsh/.histfile new file mode 100644 index 0000000..3aec297 --- /dev/null +++ b/zsh/.histfile @@ -0,0 +1,6 @@ +cd dotfiles +cd . +cd .. +: 1746361816:0;zed +: 1746362131:0;cd dotfiles +: 1746362137:0;git add . diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..7c821c7 --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,20 @@ +HISTFILE=~/.config/zsh/.histfile +HISTSIZE=5000 +SAVEHIST=100000 +setopt autocd extendedglob +unsetopt beep +bindkey -v + +# Enable colors and change prompt: +autoload -U colors && colors +PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " +# time at right hand side +RPROMPT='%F{15}(%F{166}%D{%H:%M}%F{15})%f' + +export PATH=$PATH:$HOME/.local/bin +export EDITOR=zed + +# Fixing zsh history problems on multiple terminals +setopt inc_append_history +setopt share_history +setopt histignorealldups