minor changes
This commit is contained in:
parent
37354ffae8
commit
555751951a
6 changed files with 39 additions and 44 deletions
|
@ -28,3 +28,4 @@ bind = $mod SHIFT, s, exec, grim -g "$(slurp)" - | wl-copy -t image/png && notif
|
||||||
bind = , Print, exec, grim - | wl-copy -t iamge/png && notify-send -t 3000 "Hyprland" "Full screen copied to clipboard"
|
bind = , Print, exec, grim - | wl-copy -t iamge/png && notify-send -t 3000 "Hyprland" "Full screen copied to clipboard"
|
||||||
bind = SHIFT, Print, exec, slurp -p | grim -g - - | convert - txt:- | tail -n 1 | awk '{print $3}' | wl-copy
|
bind = SHIFT, Print, exec, slurp -p | grim -g - - | convert - txt:- | tail -n 1 | awk '{print $3}' | wl-copy
|
||||||
|
|
||||||
|
bind = $mod, tab, hyprexpo:expo, toggle
|
||||||
|
|
|
@ -35,6 +35,7 @@ plugin {
|
||||||
|
|
||||||
hyprbars {
|
hyprbars {
|
||||||
bar_height = 24
|
bar_height = 24
|
||||||
|
bar_part_of_window = true
|
||||||
bar_color = $base_color
|
bar_color = $base_color
|
||||||
col.text = $text_color
|
col.text = $text_color
|
||||||
bar_text_size = 9
|
bar_text_size = 9
|
||||||
|
@ -50,7 +51,7 @@ plugin {
|
||||||
|
|
||||||
decoration {
|
decoration {
|
||||||
rounding = $radius
|
rounding = $radius
|
||||||
drop_shadow = no
|
drop_shadow = yes
|
||||||
|
|
||||||
blur {
|
blur {
|
||||||
enabled = true
|
enabled = true
|
||||||
|
|
|
@ -49,16 +49,16 @@ bind = $mod SHIFT, 0, movetoworkspacesilent, 10
|
||||||
|
|
||||||
# Move to tab
|
# Move to tab
|
||||||
|
|
||||||
bind = $mod CONTROL, 1, hy3:focustab, index, 01
|
bind = LALT, 1, hy3:focustab, index, 01
|
||||||
bind = $mod CONTROL, 2, hy3:focustab, index, 02
|
bind = LALT, 2, hy3:focustab, index, 02
|
||||||
bind = $mod CONTROL, 3, hy3:focustab, index, 03
|
bind = LALT, 3, hy3:focustab, index, 03
|
||||||
bind = $mod CONTROL, 4, hy3:focustab, index, 04
|
bind = LALT, 4, hy3:focustab, index, 04
|
||||||
bind = $mod CONTROL, 5, hy3:focustab, index, 05
|
bind = LALT, 5, hy3:focustab, index, 05
|
||||||
bind = $mod CONTROL, 6, hy3:focustab, index, 06
|
bind = LALT, 6, hy3:focustab, index, 06
|
||||||
bind = $mod CONTROL, 7, hy3:focustab, index, 07
|
bind = LALT, 7, hy3:focustab, index, 07
|
||||||
bind = $mod CONTROL, 8, hy3:focustab, index, 08
|
bind = LALT, 8, hy3:focustab, index, 08
|
||||||
bind = $mod CONTROL, 9, hy3:focustab, index, 09
|
bind = LALT, 9, hy3:focustab, index, 09
|
||||||
bind = $mod CONTROL, 0, hy3:focustab, index, 10
|
bind = LALT, 0, hy3:focustab, index, 10
|
||||||
|
|
||||||
bindn = , mouse:272, hy3:focustab, mouse
|
bindn = , mouse:272, hy3:focustab, mouse
|
||||||
bindn = , mouse_down, hy3:focustab, l, require_hovered
|
bindn = , mouse_down, hy3:focustab, l, require_hovered
|
||||||
|
|
|
@ -1,43 +1,32 @@
|
||||||
* {
|
/** Base */
|
||||||
font-family: "JetBrains Mono", "Font Awesome 6 Pro", monospace;
|
|
||||||
font-size: 13.5px;
|
|
||||||
transition: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
|
font-family: "JetBrains Mono", "Font Awesome 6 Pro", monospace;
|
||||||
|
font-size: 13.5px;
|
||||||
|
color: #c7c6c3;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar > box {
|
window#waybar > box {
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
padding: 0;
|
|
||||||
color: #c7c6c3;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
border: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modules-left,
|
.modules-left,
|
||||||
.modules-right {
|
.modules-right {
|
||||||
margin: 0;
|
|
||||||
padding: 2px 0px;
|
padding: 2px 0px;
|
||||||
background-color: #14171d;
|
background-color: #14171d;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Workspaces */
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
padding: 0px 0px;
|
margin-left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
all: initial;
|
all: initial;
|
||||||
box-shadow: inherit;
|
|
||||||
text-shadow: inherit;
|
|
||||||
color: #c7c6c3;
|
color: #c7c6c3;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
@ -58,6 +47,17 @@ button {
|
||||||
background-color: #cc5c5c;
|
background-color: #cc5c5c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Window */
|
||||||
|
|
||||||
|
window#waybar:not(.empty) #window {
|
||||||
|
padding: 0 10px;
|
||||||
|
border-left: 1px solid #4d4754;
|
||||||
|
color: #c7c6c3;
|
||||||
|
margin: 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Tray */
|
||||||
|
|
||||||
#clock,
|
#clock,
|
||||||
#battery,
|
#battery,
|
||||||
#cpu,
|
#cpu,
|
||||||
|
@ -84,15 +84,12 @@ button {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#tray > .passive {
|
||||||
padding: 0 10px;
|
-gtk-icon-effect: dim;
|
||||||
border-left: 1px solid #4d4754;
|
|
||||||
color: #c7c6c3;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#window,
|
#tray > .needs-attention {
|
||||||
#workspaces {
|
-gtk-icon-effect: highlight;
|
||||||
margin: 0 4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery {
|
#battery {
|
||||||
|
@ -140,11 +137,3 @@ button {
|
||||||
#temperature.critical {
|
#temperature.critical {
|
||||||
color: #cc5c5c;
|
color: #cc5c5c;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tray > .passive {
|
|
||||||
-gtk-icon-effect: dim;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray > .needs-attention {
|
|
||||||
-gtk-icon-effect: highlight;
|
|
||||||
}
|
|
||||||
|
|
1
.zshrc
1
.zshrc
|
@ -91,5 +91,6 @@ export PF_CUSTOM_LOGOS="/home/freya/.config/pfetch_logos"
|
||||||
|
|
||||||
export WINEARCH=win32
|
export WINEARCH=win32
|
||||||
export WINEPREFIX=/home/freya/.wine
|
export WINEPREFIX=/home/freya/.wine
|
||||||
|
export PWD="$HOME"
|
||||||
|
|
||||||
pfetch
|
pfetch
|
||||||
|
|
3
packages
3
packages
|
@ -77,8 +77,10 @@ man-pages
|
||||||
mangohud
|
mangohud
|
||||||
mesa-utils
|
mesa-utils
|
||||||
mesa-vdpau
|
mesa-vdpau
|
||||||
|
mlocate
|
||||||
mpv
|
mpv
|
||||||
nasm
|
nasm
|
||||||
|
nautilus
|
||||||
neofetch
|
neofetch
|
||||||
neovim
|
neovim
|
||||||
network-manager-applet
|
network-manager-applet
|
||||||
|
@ -113,6 +115,7 @@ sassc
|
||||||
sbctl
|
sbctl
|
||||||
sbsigntools
|
sbsigntools
|
||||||
slurp
|
slurp
|
||||||
|
socat
|
||||||
sof-firmware
|
sof-firmware
|
||||||
starship
|
starship
|
||||||
steam
|
steam
|
||||||
|
|
Loading…
Reference in a new issue