Compare commits
3 Commits
f7f3c1fa98
...
292c6da3ae
Author | SHA1 | Date | |
---|---|---|---|
292c6da3ae | |||
8f90389691 | |||
38b9a1a487 |
@ -37,7 +37,8 @@ animations {
|
|||||||
bezier = snappy, 0.05, 0.9, 0.1, 1.05
|
bezier = snappy, 0.05, 0.9, 0.1, 1.05
|
||||||
animation = windows, 1, 2, snappy
|
animation = windows, 1, 2, snappy
|
||||||
animation = windowsIn, 1, 1, default
|
animation = windowsIn, 1, 1, default
|
||||||
animation = windowsOut, 1, 3, default, popin 80%
|
animation = windowsOut, 1, 2, default, popin 80%
|
||||||
|
animation = layers, 1, 1, default
|
||||||
animation = border, 1, 3, default
|
animation = border, 1, 3, default
|
||||||
animation = borderangle, 1, 8, default
|
animation = borderangle, 1, 8, default
|
||||||
animation = fade, 1, 3, default
|
animation = fade, 1, 3, default
|
||||||
|
@ -5,7 +5,7 @@ $mainMod = ALT
|
|||||||
# Program opening and closing
|
# Program opening and closing
|
||||||
bind = $mainMod, Return, exec, foot
|
bind = $mainMod, Return, exec, foot
|
||||||
bind = $mainMod, Q, killactive
|
bind = $mainMod, Q, killactive
|
||||||
bind = $mainMod, Space, exec, pgrep wofi || wofi -i --show drun
|
bind = $mainMod, Space, exec, pgrep wofi || wofi --show drun
|
||||||
#bind = $mainMod, M, exit,
|
#bind = $mainMod, M, exit,
|
||||||
bind = $mainMod, T, pseudo, # dwindle
|
bind = $mainMod, T, pseudo, # dwindle
|
||||||
bind = $mainMod, F, togglefloating,
|
bind = $mainMod, F, togglefloating,
|
||||||
|
@ -5,3 +5,5 @@
|
|||||||
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||||
windowrulev2 = suppressevent maximize, class:.* # You'll probably like this.
|
windowrulev2 = suppressevent maximize, class:.* # You'll probably like this.
|
||||||
|
|
||||||
|
#windowrulev2 = animation windowOut,class:^(wofi)$
|
||||||
|
@ -47,12 +47,12 @@ window#waybar {
|
|||||||
text-shadow: inherit;
|
text-shadow: inherit;
|
||||||
background-color: #504945;
|
background-color: #504945;
|
||||||
}
|
}
|
||||||
#workspaces button.visible {
|
#workspaces button.focused {
|
||||||
color: #282828;
|
color: #282828;
|
||||||
background: #504945;
|
background: #504945;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
#workspaces button.focused {
|
#workspaces button.visible {
|
||||||
color: #282828;
|
color: #282828;
|
||||||
background: #83a598;
|
background: #83a598;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
4
hyprland/.config/wofi/config
Normal file
4
hyprland/.config/wofi/config
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# vim: set ft=config:
|
||||||
|
# wofi(5)
|
||||||
|
insensitive=true
|
||||||
|
allow_images=true
|
57
hyprland/.config/wofi/style.css
Normal file
57
hyprland/.config/wofi/style.css
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
/* ::root{ */
|
||||||
|
/* --accent: #5291e2; */
|
||||||
|
/* --dark: #383C4A; */
|
||||||
|
/* --light: #7C818C; */
|
||||||
|
/* --ld: #404552; */
|
||||||
|
/* --dl: #4B5162 */
|
||||||
|
/* --white: white; */
|
||||||
|
/* } */
|
||||||
|
|
||||||
|
/* The whole window */
|
||||||
|
window {
|
||||||
|
background-color: transparent;
|
||||||
|
border-radius: 8px;
|
||||||
|
color: #ebdbb2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The outermost box that contains everything */
|
||||||
|
#outer-box {
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 1em;
|
||||||
|
background-color: rgba(40,40,40,0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The box that contains all the search results */
|
||||||
|
#inner-box {
|
||||||
|
background: transparent
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The search bar */
|
||||||
|
#input {
|
||||||
|
margin: 5px;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: none;
|
||||||
|
background-color: #32302f;
|
||||||
|
color: #ebdbb2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The scrollbar */
|
||||||
|
#scroll {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The text for every search result entry */
|
||||||
|
#text {
|
||||||
|
padding: 5px;
|
||||||
|
color: #ebdbb2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The container for every entry */
|
||||||
|
#entry {
|
||||||
|
background-color: transparent;
|
||||||
|
border: 4px solid transparent;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
#entry:selected {
|
||||||
|
border: 4px solid #83a598;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user