mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
160 lines
3.1 KiB
Plaintext
160 lines
3.1 KiB
Plaintext
# ######################
|
|
# ### GENERAL CONFIG ###
|
|
# ######################
|
|
|
|
general {
|
|
disable_loading_bar = false
|
|
hide_cursor = true
|
|
grace = 3
|
|
}
|
|
|
|
background {
|
|
path = ~/Pictures/Wallpapers/Categories/Extra/origami.png
|
|
blur_passes = 3
|
|
blur_size = 6
|
|
contrast = 0.7
|
|
brightness = 0.7
|
|
}
|
|
|
|
# #######################
|
|
# ### PASSWORD CIRCLE ###
|
|
# #######################
|
|
|
|
# Use a swaylock-like circle, lighting up random segments as you type
|
|
input-field {
|
|
size = 300, 250
|
|
outline_thickness = 30
|
|
outer_color = rgba(129, 162, 190, 85)
|
|
inner_color = rgb(29, 31, 33)
|
|
font_color = rgb(100, 100, 100)
|
|
|
|
hide_input = true
|
|
fade_on_empty = false
|
|
placeholder_text = # Leave the text empty
|
|
|
|
position = 0, 0
|
|
halign = center
|
|
valign = center
|
|
}
|
|
|
|
# Show time (inside of the circle)
|
|
label {
|
|
text = cmd[update:200] date +'%H:%M:%S'
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 35
|
|
font_family = Noto Sans
|
|
|
|
position = 0, 0
|
|
halign = center
|
|
valign = center
|
|
}
|
|
|
|
# Show date (inside of the circle, below time)
|
|
label {
|
|
text = cmd[update:1000] date +'%a, %x'
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 20
|
|
font_family = Noto Sans
|
|
|
|
position = 0, -50
|
|
halign = center
|
|
valign = center
|
|
}
|
|
|
|
# Keyboard layout
|
|
label {
|
|
text = cmd[update:200] hyprctl devices -j | jq -r '.keyboards[] | select(.name == "at-translated-set-2-keyboard") | .active_keymap'
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 10
|
|
font_family = Noto Sans
|
|
|
|
position = 0, -90
|
|
halign = center
|
|
valign = center
|
|
}
|
|
|
|
# ####################
|
|
# ### OTHER LABELS ###
|
|
# ####################
|
|
|
|
# Splash text
|
|
label {
|
|
text = Session Locked
|
|
#color = rgba(129, 162, 190, 1.0)
|
|
color = rgba(255, 255, 255, 1.0)
|
|
font_size = 40
|
|
font_family = GohuFont uni11 Nerd Font
|
|
#font_family = ProFont IIX Nerd Font
|
|
|
|
shadow_passes = 1
|
|
shadow_size = 5
|
|
shadow_boost = 1.8
|
|
|
|
position = 0, 220
|
|
halign = center
|
|
valign = center
|
|
}
|
|
|
|
# Device uptime
|
|
label {
|
|
text = cmd[update:1000] echo " $(uptime -p | sed -e 's/^up //' -e 's/ years\?,\?/y/' -e 's/ months\?,\?/m/' -e 's/ weeks\?,\?/w/' -e 's/ days\?,\?/d/' -e 's/ hours\?,\?/h/' -e 's/ minutes\?.\?/m/' -e 's/ seconds\?,\?/s/' | cut -d' ' -f-2)"
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 11
|
|
font_family = Noto Sans
|
|
|
|
position = -90, -20
|
|
halign = right
|
|
valign = top
|
|
}
|
|
|
|
# Battery percentage
|
|
label {
|
|
text = cmd[update:1000] echo " $(cat /sys/class/power_supply/BAT0/capacity)%"
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 11
|
|
font_family = Noto Sans
|
|
|
|
shadow_passes = 1
|
|
shadow_size = 5
|
|
shadow_boost = 1.8
|
|
|
|
position = -20, -20
|
|
halign = right
|
|
valign = top
|
|
}
|
|
|
|
# User account
|
|
label {
|
|
text = cmd[update:10000000] echo " $USER"
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 11
|
|
font_family = Noto Sans
|
|
|
|
shadow_passes = 1
|
|
shadow_size = 5
|
|
shadow_boost = 1.8
|
|
|
|
position = 20, -20
|
|
halign = left
|
|
valign = top
|
|
}
|
|
|
|
# Recovery email (lost device)
|
|
label {
|
|
text = recovery@itsdrike.com
|
|
#color = rgba(0, 0, 0, 1.0)
|
|
color = rgba(129, 162, 190, 1.0)
|
|
font_size = 11
|
|
font_family = Noto Sans
|
|
|
|
shadow_passes = 1
|
|
shadow_size = 5
|
|
shadow_boost = 1.8
|
|
|
|
position = 20, 12
|
|
halign = left
|
|
valign = bottom
|
|
}
|
|
|
|
# vi: ft=hyprlang
|