Compare commits
4 Commits
68e4276ae2
...
50b9d23b1f
Author | SHA1 | Date | |
---|---|---|---|
50b9d23b1f | |||
30f02dcd38 | |||
42cb299c67 | |||
d53cc48c9b |
40
hypridle.conf
Normal file
40
hypridle.conf
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
general {
|
||||||
|
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances.
|
||||||
|
before_sleep_cmd = loginctl lock-session # lock before suspend.
|
||||||
|
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 150 # 2.5min.
|
||||||
|
on-timeout = ddcutil setvcp 10 0 # set monitor backlight to minimum, avoid 0 on OLED monitor.
|
||||||
|
on-resume = ddcutil setvcp 10 100 # monitor backlight restore.
|
||||||
|
}
|
||||||
|
|
||||||
|
# turn off keyboard backlight, comment out this section if you dont have a keyboard backlight.
|
||||||
|
listener {
|
||||||
|
timeout = 150 # 2.5min.
|
||||||
|
on-timeout = brightnessctl -sd rgb:kbd_backlight set 0 # turn off keyboard backlight.
|
||||||
|
on-resume = brightnessctl -rd rgb:kbd_backlight # turn on keyboard backlight.
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 300 # 5min
|
||||||
|
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeput = 3600 # 1h
|
||||||
|
on-timeout = playerctl --all-players pause # Pause everything
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 400 # 6min
|
||||||
|
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
|
||||||
|
on-resume = hyprctl dispatch dpms on ; ddcutil setvcp 10 100 # screen on when activity is detected after timeout has fired.
|
||||||
|
}
|
||||||
|
|
||||||
|
# Currently logs out entirely
|
||||||
|
#listener {
|
||||||
|
# timeout = 600 # 10min
|
||||||
|
# on-timeout = systemctl suspend # suspend pc
|
||||||
|
#}
|
218
hyprland.conf
218
hyprland.conf
@ -1,22 +1,27 @@
|
|||||||
|
debug {
|
||||||
|
disable_logs = false
|
||||||
|
}
|
||||||
|
|
||||||
# #######################################################################################
|
source=$XDG_CONFIG_HOME/hypr/mocha.conf
|
||||||
# AUTOGENERATED HYPR CONFIG.
|
|
||||||
# PLEASE USE THE CONFIG PROVIDED IN THE GIT REPO /examples/hypr.conf AND EDIT IT,
|
|
||||||
# OR EDIT THIS ONE ACCORDING TO THE WIKI INSTRUCTIONS.
|
|
||||||
# #######################################################################################
|
|
||||||
|
|
||||||
autogenerated = 1 # remove this line to remove the warning
|
|
||||||
|
|
||||||
# This is an example Hyprland config file.
|
|
||||||
# Refer to the wiki for more information.
|
# Refer to the wiki for more information.
|
||||||
# https://wiki.hyprland.org/Configuring/Configuring-Hyprland/
|
# https://wiki.hyprland.org/Configuring/Configuring-Hyprland/
|
||||||
|
|
||||||
# Please note not all available settings / options are set here.
|
|
||||||
# For a full list, see the wiki
|
|
||||||
|
|
||||||
# You can split this configuration into multiple files
|
###################
|
||||||
# Create your files separately and then link them to this file like this:
|
### NVIDIA (FU) ###
|
||||||
# source = ~/.config/hypr/myColors.conf
|
###################
|
||||||
|
env = LIBVA_DRIVER_NAME,nvidia
|
||||||
|
env = XDG_SESSION_TYPE,wayland
|
||||||
|
env = GBM_BACKEND,nvidia-drm
|
||||||
|
env = __GLX_VENDOR_LIBRARY_NAME,nvidia
|
||||||
|
|
||||||
|
cursor {
|
||||||
|
no_hardware_cursors = true
|
||||||
|
}
|
||||||
|
|
||||||
|
env = NVD_BACKEND,direct
|
||||||
|
env = ELECTRON_OZONE_PLATFORM_HINT,auto
|
||||||
|
|
||||||
|
|
||||||
################
|
################
|
||||||
@ -24,7 +29,8 @@ autogenerated = 1 # remove this line to remove the warning
|
|||||||
################
|
################
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||||
monitor=,preferred,auto,auto
|
#monitor = , preferred, auto, 1
|
||||||
|
monitor=DP-1, preferred, auto, 1
|
||||||
|
|
||||||
|
|
||||||
###################
|
###################
|
||||||
@ -46,10 +52,10 @@ $menu = wofi --show drun
|
|||||||
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
||||||
# Or execute your favorite apps at launch like this:
|
# Or execute your favorite apps at launch like this:
|
||||||
|
|
||||||
# exec-once = $terminal
|
#exec-once = waybar
|
||||||
# exec-once = nm-applet &
|
exec-once = unlink $XDG_PICTURES_DIR/Wallpapers/current ; ln -s $XDG_PICTURES_DIR/Wallpapers/$(ls $XDG_PICTURES_DIR/Wallpapers | sort -R | tail -1) $XDG_PICTURES_DIR/Wallpapers/current && hyprpaper # Display random wallpaper
|
||||||
# exec-once = waybar & hyprpaper & firefox
|
exec-once = mako
|
||||||
|
exec-once = hypridle
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
### ENVIRONMENT VARIABLES ###
|
### ENVIRONMENT VARIABLES ###
|
||||||
@ -69,14 +75,14 @@ env = HYPRCURSOR_SIZE,24
|
|||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#general
|
# https://wiki.hyprland.org/Configuring/Variables/#general
|
||||||
general {
|
general {
|
||||||
gaps_in = 5
|
gaps_in = 4
|
||||||
gaps_out = 20
|
gaps_out = 8
|
||||||
|
|
||||||
border_size = 2
|
border_size = 2
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||||
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
#col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||||
col.inactive_border = rgba(595959aa)
|
#col.inactive_border = rgba(595959aa)
|
||||||
|
|
||||||
# Set to true enable resizing windows by clicking and dragging on borders and gaps
|
# Set to true enable resizing windows by clicking and dragging on borders and gaps
|
||||||
resize_on_border = false
|
resize_on_border = false
|
||||||
@ -95,10 +101,10 @@ decoration {
|
|||||||
active_opacity = 1.0
|
active_opacity = 1.0
|
||||||
inactive_opacity = 1.0
|
inactive_opacity = 1.0
|
||||||
|
|
||||||
drop_shadow = true
|
#drop_shadow = true
|
||||||
shadow_range = 4
|
#shadow_range = 4
|
||||||
shadow_render_power = 3
|
#shadow_render_power = 3
|
||||||
col.shadow = rgba(1a1a1aee)
|
#col.shadow = rgba(1a1a1aee)
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||||
blur {
|
blur {
|
||||||
@ -134,7 +140,6 @@ dwindle {
|
|||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||||
master {
|
master {
|
||||||
new_is_master = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
||||||
@ -184,15 +189,19 @@ device {
|
|||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||||
$mainMod = SUPER # Sets "Windows" key as main modifier
|
$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||||
|
$subMod = SHIFT # Sets "Shift" key as sub modifier
|
||||||
|
$supMod = CONTROL # Sets "CTRL" key as sub modifier
|
||||||
|
$altMod = ALT # Sets "ALT" as the alternative modifier.
|
||||||
|
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
bind = $mainMod, Q, exec, $terminal
|
bind = $mainMod, Return, exec, $terminal
|
||||||
bind = $mainMod, C, killactive,
|
bind = $mainMod $subMod, Q, killactive,
|
||||||
bind = $mainMod, M, exit,
|
bind = $mainMod, M, exit,
|
||||||
bind = $mainMod, E, exec, $fileManager
|
bind = $mainMod, E, exec, $fileManager
|
||||||
bind = $mainMod, V, togglefloating,
|
bind = $mainMod, V, togglefloating,
|
||||||
|
bind = $mainMod $subMod, V, pseudo, # dwindle
|
||||||
|
bind = $mainMod, C, fullscreen,
|
||||||
bind = $mainMod, R, exec, $menu
|
bind = $mainMod, R, exec, $menu
|
||||||
bind = $mainMod, P, pseudo, # dwindle
|
|
||||||
bind = $mainMod, J, togglesplit, # dwindle
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
@ -214,20 +223,41 @@ bind = $mainMod, 9, workspace, 9
|
|||||||
bind = $mainMod, 0, workspace, 10
|
bind = $mainMod, 0, workspace, 10
|
||||||
|
|
||||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
bind = $mainMod SHIFT, 1, movetoworkspacesilent, 1
|
||||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
bind = $mainMod SHIFT, 2, movetoworkspacesilent, 2
|
||||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
bind = $mainMod SHIFT, 3, movetoworkspacesilent, 3
|
||||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
bind = $mainMod SHIFT, 4, movetoworkspacesilent, 4
|
||||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
bind = $mainMod SHIFT, 5, movetoworkspacesilent, 5
|
||||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
bind = $mainMod SHIFT, 6, movetoworkspacesilent, 6
|
||||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
bind = $mainMod SHIFT, 7, movetoworkspacesilent, 7
|
||||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
bind = $mainMod SHIFT, 8, movetoworkspacesilent, 8
|
||||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
bind = $mainMod SHIFT, 9, movetoworkspacesilent, 9
|
||||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
bind = $mainMod SHIFT, 0, movetoworkspacesilent, 10
|
||||||
|
|
||||||
# Example special workspace (scratchpad)
|
# Browser Workspace
|
||||||
bind = $mainMod, S, togglespecialworkspace, magic
|
workspace = special:browser, on-created-empty: [workspace browser silent] firefox
|
||||||
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
|
bind = $mainMod, A, togglespecialworkspace, browser
|
||||||
|
bind = $mainMod SHIFT, A, movetoworkspacesilent, special:browser
|
||||||
|
|
||||||
|
# Music Workspace
|
||||||
|
workspace = special:music, on-created-empty: [workspace browser music silent] tidal-hifi
|
||||||
|
bind = $mainMod, S, togglespecialworkspace, music
|
||||||
|
bind = $mainMod SHIFT, S, movetoworkspacesilent, special:music
|
||||||
|
|
||||||
|
# Launchers Workspace
|
||||||
|
workspace = special:launchers, on-created-empty: [workspace launchers silent] steam & prismlauncher
|
||||||
|
bind = $mainMod, D, togglespecialworkspace, launchers
|
||||||
|
bind = $mainMod SHIFT, D, movetoworkspacesilent, special:launchers
|
||||||
|
|
||||||
|
# Messaging Workspace
|
||||||
|
workspace = special:social, on-created-empty: [workspace social silent] signal-desktop & element-desktop & discord & thunderbird
|
||||||
|
bind = $mainMod, F, togglespecialworkspace, social
|
||||||
|
bind = $mainMod SHIFT, F, movetoworkspacesilent, special:social
|
||||||
|
|
||||||
|
# Game Workspace
|
||||||
|
workspace = special:game, border:false, rounding:false
|
||||||
|
bind = $mainMod, G, togglespecialworkspace, game
|
||||||
|
bind = $mainMod SHIFT, G, movetoworkspacesilent, special:game
|
||||||
|
|
||||||
# Scroll through existing workspaces with mainMod + scroll
|
# Scroll through existing workspaces with mainMod + scroll
|
||||||
bind = $mainMod, mouse_down, workspace, e+1
|
bind = $mainMod, mouse_down, workspace, e+1
|
||||||
@ -237,6 +267,27 @@ bind = $mainMod, mouse_up, workspace, e-1
|
|||||||
bindm = $mainMod, mouse:272, movewindow
|
bindm = $mainMod, mouse:272, movewindow
|
||||||
bindm = $mainMod, mouse:273, resizewindow
|
bindm = $mainMod, mouse:273, resizewindow
|
||||||
|
|
||||||
|
# Take screenshots
|
||||||
|
bind = $mainMod, P, exec, grim -l 9 -g "$(hyprctl -j activewindow | jq -r '"\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"')" - | wl-copy
|
||||||
|
bind = $mainMod $subMod, P, exec, grim -l 9 -g "$(slurp -d)" - | wl-copy
|
||||||
|
bind = $mainMod $supMod, P, exec, grim -l 9 - | wl-copy
|
||||||
|
# The same, but storing it as a file instead
|
||||||
|
bind = $mainMod $altMod, P, exec, grim -l 9 -g "$(hyprctl -j activewindow | jq -r '"\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"')" "$XDG_PICTURES_DIR/Screenshots/$(date '+%F_%Hh%Mm%Ss%3Nms')_Window.png"
|
||||||
|
bind = $mainMod $subMod $altMod, P, exec, grim -l 9 -g "$(slurp -d)" "$XDG_PICTURES_DIR/Screenshots/$(date '+%F_%Hh%Mm%Ss%3Nms')_Region.png"
|
||||||
|
bind = $mainMod $supMod $altMod, P, exec, grim -l 9 -t png "$XDG_PICTURES_DIR/Screenshots/$(date '+%F_%Hh%Mm%Ss%3Nms')_Fullscreen.png"
|
||||||
|
# Steam
|
||||||
|
bind = ,F12,pass,.*Steam.*
|
||||||
|
|
||||||
|
# Multimedia
|
||||||
|
bindl = , XF86AudioRaiseVolume, exec, playerctl volume 0.1+
|
||||||
|
bindl = , XF86AudioLowerVolume, exec, playerctl volume 0.1-
|
||||||
|
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||||
|
bindl = $mainMod, Space, exec, playerctl play-pause
|
||||||
|
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||||
|
bindl = , XF86AudioNext, exec, playerctl next
|
||||||
|
|
||||||
|
# Lockscreeen
|
||||||
|
bind = $mainMod, L, exec, hyprlock
|
||||||
|
|
||||||
##############################
|
##############################
|
||||||
### WINDOWS AND WORKSPACES ###
|
### WINDOWS AND WORKSPACES ###
|
||||||
@ -245,14 +296,79 @@ bindm = $mainMod, mouse:273, resizewindow
|
|||||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||||
# See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules
|
# See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules
|
||||||
|
|
||||||
# Example windowrule v1
|
### Tags
|
||||||
# windowrule = float, ^(kitty)$
|
|
||||||
|
|
||||||
# Example windowrule v2
|
## Workspaces
|
||||||
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
|
||||||
|
|
||||||
windowrulev2 = suppressevent maximize, class:.* # You'll probably like this.
|
# browser Workspace
|
||||||
|
windowrulev2 = tag +browser, class:^firefox$
|
||||||
|
|
||||||
|
# Music Workspace
|
||||||
|
windowrulev2 = tag +music, class:^tidal-hifi$
|
||||||
|
|
||||||
|
# Launcher Workspace
|
||||||
|
windowrulev2 = tag +launcher, class:^steam$
|
||||||
|
windowrulev2 = tag +launcher, class:^prismlauncher$
|
||||||
|
|
||||||
|
# Social Workspace
|
||||||
|
windowrulev2 = tag +social, class:^signal$
|
||||||
|
windowrulev2 = tag +social, class:^Element$
|
||||||
|
windowrulev2 = tag +social, class:^discord$
|
||||||
|
windowrulev2 = tag +social, class:^thunderbird$
|
||||||
|
|
||||||
|
# Game Workspace
|
||||||
|
windowrulev2 = tag +game, class:^steam_app_\d+$ # adds game tag to all steam apps
|
||||||
|
|
||||||
|
## Inhibit Idle
|
||||||
|
# Focus
|
||||||
|
windowrulev2 = tag +inhibit_idle_focused, tag:^game$
|
||||||
|
|
||||||
|
# Fullscreen
|
||||||
|
|
||||||
|
## Miscellaneous
|
||||||
|
|
||||||
|
# Transparency
|
||||||
|
windowrulev2 = tag +transparent, class:^.*$
|
||||||
|
|
||||||
|
windowrulev2 = tag +opaque, class:^kitty$
|
||||||
|
windowrulev2 = tag +opaque, fullscreen:1
|
||||||
|
windowrulev2 = tag -transparent, tag:opaque
|
||||||
|
|
||||||
|
# Super Transparency
|
||||||
|
windowrulev2 = tag +super_transparent, floating:1
|
||||||
|
windowrulev2 = tag -super_transparent, floating:0
|
||||||
|
|
||||||
|
windowrulev2 = tag -transparent, tag:super_transparent
|
||||||
|
windowrulev2 = tag +opaque, class:^kitty$
|
||||||
|
windowrulev2 = tag -super_transparent, tag:opaque
|
||||||
|
|
||||||
|
# Silent
|
||||||
|
windowrulev2 = tag +silent, tag:browser
|
||||||
|
windowrulev2 = tag +silent, tag:music
|
||||||
|
windowrulev2 = tag +silent, tag:launcher
|
||||||
|
windowrulev2 = tag +silent, tag:social
|
||||||
|
windowrulev2 = tag +silent, tag:game
|
||||||
|
|
||||||
|
|
||||||
|
### Windowrules
|
||||||
|
|
||||||
|
## Transparency
|
||||||
|
windowrulev2 = opacity 0.98 0.96 1, tag:transparent
|
||||||
|
windowrulev2 = opacity 0.85 0.80 1, tag:super_transparent
|
||||||
|
windowrulev2 = opacity 1 1 1, tag:opaque
|
||||||
|
|
||||||
|
## Special Workspaces
|
||||||
|
windowrulev2 = workspace social silent,tag:browser
|
||||||
|
windowrulev2 = workspace social silent,tag:music
|
||||||
|
windowrulev2 = workspace social silent,tag:launcher
|
||||||
|
windowrulev2 = workspace social silent,tag:social
|
||||||
|
windowrulev2 = workspace social silent,tag:game
|
||||||
|
|
||||||
|
## Silent
|
||||||
|
windowrulev2 = noinitialfocus, tag:silent
|
||||||
|
windowrulev2 = suppressevent activate, tag:silent
|
||||||
|
|
||||||
|
## Inhibit Idle (stay focused)
|
||||||
|
windowrulev2 = idleinhibit, tag:inhibit_idle_focuses
|
||||||
|
windowrulev2 = idleinhibit, fullscreen:1
|
||||||
|
|
||||||
debug {
|
|
||||||
disable_logs = false
|
|
||||||
}
|
|
||||||
|
80
hyprlock.conf
Normal file
80
hyprlock.conf
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
source = $XDG_CONFIG_HOME/hypr/mocha.conf
|
||||||
|
|
||||||
|
$accent = $blue
|
||||||
|
$accentAlpha = $blueAlpha
|
||||||
|
$font = FiraCode
|
||||||
|
|
||||||
|
# GENERAL
|
||||||
|
general {
|
||||||
|
disable_loading_bar = true
|
||||||
|
hide_cursor = true
|
||||||
|
}
|
||||||
|
|
||||||
|
# BACKGROUND
|
||||||
|
background {
|
||||||
|
monitor =
|
||||||
|
path = $XDG_PICTURES_DIR/Wallpapers/current
|
||||||
|
blur_passes = 4
|
||||||
|
blur_size = 8
|
||||||
|
color = rgba($baseAlphaff)
|
||||||
|
}
|
||||||
|
|
||||||
|
# TIME
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:30000] echo "$(date +"%R")"
|
||||||
|
color = $text
|
||||||
|
font_size = 90
|
||||||
|
font_family = $font
|
||||||
|
position = -30, 0
|
||||||
|
halign = right
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# DATE
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:43200000] echo "$(date +"%A, %d %B %Y")"
|
||||||
|
color = $text
|
||||||
|
font_size = 25
|
||||||
|
font_family = $font
|
||||||
|
position = -30, -150
|
||||||
|
halign = right
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# USER AVATAR
|
||||||
|
|
||||||
|
image {
|
||||||
|
monitor =
|
||||||
|
path = ~/.face
|
||||||
|
size = 100
|
||||||
|
border_color = $accent
|
||||||
|
|
||||||
|
position = 0, 75
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
|
|
||||||
|
# INPUT FIELD
|
||||||
|
input-field {
|
||||||
|
monitor =
|
||||||
|
size = 300, 60
|
||||||
|
outline_thickness = 4
|
||||||
|
dots_size = 0.2
|
||||||
|
dots_spacing = 0.2
|
||||||
|
dots_center = true
|
||||||
|
outer_color = $accent
|
||||||
|
inner_color = $surface0
|
||||||
|
font_color = $text
|
||||||
|
fade_on_empty = false
|
||||||
|
placeholder_text = <span foreground="##$textAlpha"><i> Logged in as </i><span foreground="##$accentAlpha">$USER</span></span>
|
||||||
|
hide_input = false
|
||||||
|
check_color = $accent
|
||||||
|
fail_color = $red
|
||||||
|
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
|
||||||
|
capslock_color = $yellow
|
||||||
|
position = 0, -35
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
2
hyprpaper.conf
Normal file
2
hyprpaper.conf
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
preload = $XDG_PICTURES_DIR/Wallpapers/current
|
||||||
|
wallpaper = DP-1,$XDG_PICTURES_DIR/Wallpapers/current
|
77
mocha.conf
Normal file
77
mocha.conf
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
$rosewater = rgb(f5e0dc)
|
||||||
|
$rosewaterAlpha = f5e0dc
|
||||||
|
|
||||||
|
$flamingo = rgb(f2cdcd)
|
||||||
|
$flamingoAlpha = f2cdcd
|
||||||
|
|
||||||
|
$pink = rgb(f5c2e7)
|
||||||
|
$pinkAlpha = f5c2e7
|
||||||
|
|
||||||
|
$mauve = rgb(cba6f7)
|
||||||
|
$mauveAlpha = cba6f7
|
||||||
|
|
||||||
|
$red = rgb(f38ba8)
|
||||||
|
$redAlpha = f38ba8
|
||||||
|
|
||||||
|
$maroon = rgb(eba0ac)
|
||||||
|
$maroonAlpha = eba0ac
|
||||||
|
|
||||||
|
$peach = rgb(fab387)
|
||||||
|
$peachAlpha = fab387
|
||||||
|
|
||||||
|
$yellow = rgb(f9e2af)
|
||||||
|
$yellowAlpha = f9e2af
|
||||||
|
|
||||||
|
$green = rgb(a6e3a1)
|
||||||
|
$greenAlpha = a6e3a1
|
||||||
|
|
||||||
|
$teal = rgb(94e2d5)
|
||||||
|
$tealAlpha = 94e2d5
|
||||||
|
|
||||||
|
$sky = rgb(89dceb)
|
||||||
|
$skyAlpha = 89dceb
|
||||||
|
|
||||||
|
$sapphire = rgb(74c7ec)
|
||||||
|
$sapphireAlpha = 74c7ec
|
||||||
|
|
||||||
|
$blue = rgb(89b4fa)
|
||||||
|
$blueAlpha = 89b4fa
|
||||||
|
|
||||||
|
$lavender = rgb(b4befe)
|
||||||
|
$lavenderAlpha = b4befe
|
||||||
|
|
||||||
|
$text = rgb(cdd6f4)
|
||||||
|
$textAlpha = cdd6f4
|
||||||
|
|
||||||
|
$subtext1 = rgb(bac2de)
|
||||||
|
$subtext1Alpha = bac2de
|
||||||
|
|
||||||
|
$subtext0 = rgb(a6adc8)
|
||||||
|
$subtext0Alpha = a6adc8
|
||||||
|
|
||||||
|
$overlay2 = rgb(9399b2)
|
||||||
|
$overlay2Alpha = 9399b2
|
||||||
|
|
||||||
|
$overlay1 = rgb(7f849c)
|
||||||
|
$overlay1Alpha = 7f849c
|
||||||
|
|
||||||
|
$overlay0 = rgb(6c7086)
|
||||||
|
$overlay0Alpha = 6c7086
|
||||||
|
|
||||||
|
$surface2 = rgb(585b70)
|
||||||
|
$surface2Alpha = 585b70
|
||||||
|
|
||||||
|
$surface1 = rgb(45475a)
|
||||||
|
$surface1Alpha = 45475a
|
||||||
|
|
||||||
|
$surface0 = rgb(313244)
|
||||||
|
$surface0Alpha = 313244
|
||||||
|
|
||||||
|
$base = rgb(1e1e2e)
|
||||||
|
$baseAlpha = 1e1e2e
|
||||||
|
|
||||||
|
$mantle = rgb(181825)
|
||||||
|
$mantleAlpha = 181825
|
||||||
|
|
||||||
|
$crust = rgb(11111b)
|
||||||
|
$crustAlpha = 11111b
|
Loading…
Reference in New Issue
Block a user