-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Started working on the config again!
- Loading branch information
Showing
21 changed files
with
583 additions
and
2,222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | ||
"display": { "separator": " -> " }, | ||
"modules": [ | ||
"break", | ||
{ "type": "title", "key": " ", "keyColor": "cyan" }, | ||
{ "type": "custom", "format": "┌───────────────────────────────────────────────────┐" }, | ||
{ "type": "cpu", "key": " ", "keyColor": "cyan" }, | ||
{ "type": "gpu", "key": " ", "keyColor": "green" }, | ||
{ "type": "memory", "key": " ", "keyColor": "red" }, | ||
{ "type": "display", "key": " ", "keyColor": "magenta" }, | ||
{ "type": "custom", "format": "├───────────────────────────────────────────────────┤" }, | ||
{ "type": "os", "key": " ", "keyColor": "blue" }, | ||
{ "type": "wm", "key": " ", "keyColor": "cyan" }, | ||
{ "type": "shell", "key": " ", "keyColor": "green" }, | ||
{ "type": "terminal", "key": " ", "keyColor": "yellow" }, | ||
{ "type": "terminalfont", "key": " ", "keyColor": "white" }, | ||
{ "type": "theme", "key": " ", "keyColor": "magenta" }, | ||
{ "type": "icons", "key": " ", "keyColor": "red" }, | ||
// { "type": "packages", "key": " ", "keyColor": "green" }, | ||
// { "type": "uptime", "key": " ", "keyColor": "yellow" }, | ||
{ "type": "custom", "format": "└───────────────────────────────────────────────────┘" } | ||
|
||
// { "type": "localip", "key": " " } | ||
// { "type": "battery", "key": " " } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | ||
"display": { "separator": " -> " }, | ||
"logo": null, | ||
"modules": [ | ||
"break", | ||
{ "type": "title", "key": " ", "keyColor": "cyan" }, | ||
{ "type": "custom", "format": "┌───────────────────────────────────────────────────┐" }, | ||
{ "type": "os", "key": " ", "keyColor": "blue" }, | ||
{ "type": "shell", "key": " ", "keyColor": "green" }, | ||
{ "type": "memory", "key": " ", "keyColor": "red" }, | ||
{ "type": "localip", "key": " " }, | ||
{ "type": "battery", "key": " ", "keyColor": "green" }, | ||
{ "type": "custom", "format": "└───────────────────────────────────────────────────┘" } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# #################### # | ||
# Idle triggers config # | ||
# #################### # | ||
|
||
|
||
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 = 60 # 1min. | ||
on-timeout = brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor. | ||
on-resume = brightnessctl -r # 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 = 120 # 2min | ||
on-timeout = loginctl lock-session # lock screen when timeout has passed | ||
} | ||
|
||
listener { | ||
timeout = 150 # 2.5min | ||
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed | ||
on-resume = hyprctl dispatch dpms on # screen on when activity is detected after timeout has fired. | ||
} | ||
|
||
listener { | ||
timeout = 300 # 5min | ||
on-timeout = systemctl suspend # suspend pc | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# ################## # | ||
# Lock screen config # | ||
# ################## # | ||
|
||
|
||
background { | ||
monitor = | ||
path = ~/Images/lock.png | ||
|
||
blur_passes = 2 | ||
blur_size = 4 | ||
noise = 0.02 | ||
contrast = 0.9 | ||
brightness = 0.8 | ||
vibrancy = 0.2 | ||
} | ||
|
||
input-field { | ||
monitor = | ||
|
||
size = 320, 60 | ||
outline_thickness = 4 | ||
|
||
dots_size = 0.35 | ||
dots_spacing = 0.3 | ||
dots_center = true | ||
|
||
font_color = rgb(200, 200, 200) | ||
inner_color = rgb(0, 0, 0) | ||
outer_color = rgb(34, 14, 28) | ||
check_color = rgb(66, 20, 32) | ||
|
||
fail_color = rgb(204, 34, 34) # if authentication failed, changes outer_color and fail message color | ||
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i> # can be set to empty | ||
fail_transition = 150 | ||
fade_timeout = 2000 # Milliseconds before fade_on_empty is triggered. | ||
|
||
position = 0, -200 | ||
halign = center | ||
valign = center | ||
} | ||
|
||
label { | ||
monitor = | ||
text = $TIME | ||
color = rgba(200, 200, 200, 1.0) | ||
font_size = 80 | ||
font_family = Cascadia Code PL Extra Bold | ||
|
||
position = 0, 100 | ||
halign = center | ||
valign = center | ||
} | ||
|
||
label { | ||
monitor = | ||
text = Welcome back, $USER | ||
color = rgba(200, 200, 200, 1.0) | ||
font_size = 40 | ||
font_family = Cascadia Code PL Bold | ||
|
||
position = 0, -20 | ||
halign = center | ||
valign = center | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.