Compare commits

...

4 Commits

5 changed files with 33 additions and 3 deletions

View File

@ -14,3 +14,8 @@ family = "GoMono Nerd Font"
[font.normal]
family = "GoMono Nerd Font"
[keyboard]
bindings = [
{ key = ";", mods = "Control", chars = "\u001bOR" }
]

View File

@ -6,15 +6,22 @@ input {
}
general {
gaps_in = 2
gaps_out = 5
gaps_in = 1
gaps_out = 3
layout = dwindle
border_size = 2
col.inactive_border = 0xff808080
col.active_border = 0xffbf6a40
}
dwindle {
preserve_split = true
}
decoration {
drop_shadow = false
}
animations {
enabled = false
}
@ -23,6 +30,7 @@ misc {
disable_hyprland_logo = true
disable_splash_rendering = true
disable_autoreload = true
background_color = rgb(404040)
}
$menu = rofi -show drun -theme Arc-Dark
@ -35,6 +43,7 @@ bind = $mainMod SHIFT, Return, exec, $terminal
bind = $mainMod, Return, layoutmsg,swapwithmaster master
bind = $mainMod CONTROL SHIFT, Q, exit
bind = $mainMod, Q, exec, hyprctl reload
bind = $mainMod CONTROL SHIFT, C, killactive
bind = $mainMod CONTROL SHIFT, L, exec, swaylock -c 263c59
bind = $mainMod CONTROL SHIFT, S, exec, swaylock -c 263c59
bind = $mainMod CONTROL SHIFT, S, exec, systemctl suspend
@ -50,6 +59,7 @@ bind = $mainMod SHIFT, I, layoutmsg, swapprev
bind = $mainMod SHIFT, O, layoutmsg, swapnext
bind = $mainMod CONTROL, I, layoutmsg, removemaster
bind = $mainMod CONTROL, O, layoutmsg, addmaster
bind = $mainMod SHIFT, F6, exec, ~/bin/lupan-set-theme toggle
bind = $mainMod, h, movefocus, l
bind = $mainMod, j, movefocus, d

View File

@ -11,12 +11,23 @@
#workspaces button {
padding: 0 3px;
border-radius: 0;
border-bottom: 3px solid transparent;
}
#workspaces button.active {
background-color: #7b899d;
border-bottom: 3px solid #7b899d;
}
#workspaces button.urgent {
border-bottom: 3px solid #a65959;
}
#window {
border-bottom: 3px solid transparent;
}
#clock {
padding: 0 1rem;
border-bottom: 3px solid transparent;
}

View File

@ -31,4 +31,5 @@ fi
if [ -f ~/.config/xsettingsd/xsettingsd.conf ]; then
sed -i -E "s#(Net/ThemeName) .*#\\1 \"${GTK_THEME}\"#" ~/.config/xsettingsd/xsettingsd.conf
pkill -HUP -x xsettingsd
gsettings set org.gnome.desktop.interface gtk-theme "${GTK_THEME}"
fi

View File

@ -125,6 +125,8 @@ keybinds clear-defaults=true {
bind "Ctrl b" { Write 2; SwitchToMode "Normal"; }
bind "\"" { NewPane "Down"; SwitchToMode "Normal"; }
bind "%" { NewPane "Right"; SwitchToMode "Normal"; }
bind "s" { NewPane "Down"; SwitchToMode "Normal"; }
bind "v" { NewPane "Right"; SwitchToMode "Normal"; }
bind "z" { ToggleFocusFullscreen; SwitchToMode "Normal"; }
bind "c" { NewTab; SwitchToMode "Normal"; }
bind "," { SwitchToMode "RenameTab"; }
@ -181,6 +183,7 @@ keybinds clear-defaults=true {
bind "Ctrl h" { SwitchToMode "Move"; }
}
shared_except "tmux" {
bind "F3" { SwitchToMode "Tmux"; }
bind "Ctrl b" { SwitchToMode "Tmux"; }
}
}