feat\!: switch to Hyprland. Touchscreen gestures not implemented properly

This commit is contained in:
matt1432 2023-06-06 11:45:04 -04:00
parent 1d43d899ee
commit ce51ddb46e
29 changed files with 558 additions and 567 deletions

2
gtklock/config.ini Normal file
View file

@ -0,0 +1,2 @@
[main]
modules=powerbar-module.so

5
gtklock/scripts/blur.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
grim /tmp/image.png
convert /tmp/image.png -channel RGBA -blur 0x8 /tmp/image.png

4
gtklock/scripts/lock.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
$HOME/.config/hypr/scripts/tablet/laptop-mode.sh &
$HOME/.config/gtklock/scripts/blur.sh
gtklock

13
gtklock/style.css Normal file
View file

@ -0,0 +1,13 @@
window {
background-image: url("/tmp/image.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: rgba(0, 0, 0, 0);
}
#window-box {
padding: 64px;
border-radius: 30px;
background-color: rgba(32, 32, 32, 0.8);
}