diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-06 11:16:42 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-06 11:17:00 -0500 |
commit | 5fcb99d7c16029ee0495a437a7bbe7b003dda023 (patch) | |
tree | c4074843eaf86869d5902be30a0c5068c3740dd2 /src/config/files/i3lock | |
parent | 97f21912d5f087dfa15cdba7de04e500ea08743a (diff) |
Cleanup configs
Diffstat (limited to 'src/config/files/i3lock')
-rwxr-xr-x | src/config/files/i3lock/lock.sh | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/config/files/i3lock/lock.sh b/src/config/files/i3lock/lock.sh deleted file mode 100755 index 51be0f7..0000000 --- a/src/config/files/i3lock/lock.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh - -BLANK='#1d2021' -CLEAR='#1d2021' -DEFAULT='#282828' -TEXT='#ebdbb2' -WRONG='#fb4934' -VERIFYING='#83a598' - -i3lock \ - --insidever-color=$CLEAR \ - --ringver-color=$VERIFYING \ - \ - --insidewrong-color=$CLEAR \ - --ringwrong-color=$WRONG \ - \ - --inside-color=$BLANK \ - --ring-color=$DEFAULT \ - --line-color=$BLANK \ - --separator-color=$DEFAULT \ - \ - --verif-color=$TEXT \ - --verif-text="Verifying" \ - --wrong-color=$TEXT \ - --time-color=$TEXT \ - --date-color=$TEXT \ - --layout-color=$TEXT \ - --keyhl-color=$WRONG \ - --bshl-color=$WRONG \ - \ - --screen 1 \ - --blur 5 \ - --clock \ - --indicator \ - --time-str="%r" \ - --date-str="%A, %d-%m-%Y" \ - --time-font="MesloLGS NF" \ - --date-font="MesloLGS NF" \ - --time-size=24 \ - |