fixed typo

This commit is contained in:
Jake Pullen
2025-05-04 13:35:49 +01:00
parent 92b689f6c3
commit a5868c29c1
4 changed files with 65 additions and 44 deletions
+3 -3
View File
@@ -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)$
+35 -40
View File
@@ -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"
"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
],
"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"
]
"include": ["~/.config/waybar/modules.json"],
}
+6
View File
@@ -0,0 +1,6 @@
cd dotfiles
cd .
cd ..
: 1746361816:0;zed
: 1746362131:0;cd dotfiles
: 1746362137:0;git add .
+20
View File
@@ -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