mirror of
https://github.com/Ascyii/dotfiles.git
synced 2026-01-01 06:54:24 -05:00
Added grayscale
This commit is contained in:
@@ -23,16 +23,31 @@ exec-once = hyprsunset -t 3000
|
||||
exec-once = wl-clip-persist --clipboard regular
|
||||
exec-once = hyprpaper
|
||||
exec-once = nm-applet
|
||||
exec-once = nextcloud
|
||||
exec-once = sleep 5 && nextcloud
|
||||
|
||||
# Prevent speaker damage
|
||||
exec-once = wpctl set-volume @DEFAULT_AUDIO_SINK@ 42%
|
||||
exec-once = sleep 5 && wpctl set-volume @DEFAULT_AUDIO_SINK@ 42%
|
||||
|
||||
exec-once = ~/projects/scripts/shell/rnote_mapper.sh
|
||||
exec-once = ~/projects/scripts/shell/toggle_grayscale.sh
|
||||
|
||||
# Mount the webdav folder configured by rclone
|
||||
exec-once = mkdir -p ~/webdav
|
||||
exec-once = rclone mount Strato: ~/webdav
|
||||
|
||||
# Only run this on the laptops and phones that dont want to run synthing
|
||||
#exec-once = rclone mount Strato: ~/webdav \
|
||||
# --vfs-cache-mode writes \
|
||||
# --vfs-cache-max-size 10G \
|
||||
# --vfs-cache-poll-interval 5m \
|
||||
# --vfs-write-back 30s \
|
||||
# --buffer-size 128M \
|
||||
# --dir-cache-time 12h \
|
||||
# --poll-interval 5m \
|
||||
# --umask 022 \
|
||||
# --no-modtime \
|
||||
# --daemon
|
||||
|
||||
#exec-once = rclone bisync Strato: ~/webdav --verbose
|
||||
|
||||
# Set the right workspace otherwise it is set to ten
|
||||
exec-once = sleep 0.1 && hyprctl dispatch workspace 1
|
||||
@@ -191,7 +206,7 @@ windowrulev2 = workspace 5, class:(steam)
|
||||
windowrulev2 = workspace 5, class:(blender)
|
||||
|
||||
windowrulev2 = workspace 6, initialTitle:(LibreOffice)
|
||||
windowrulev2 = workspace 6, initialTitle:(GNU Image Manipulation Program)
|
||||
#windowrulev2 = workspace 6, initialTitle:(GNU Image Manipulation Program)
|
||||
windowrulev2 = workspace 6, class:(org.shotcut.Shotcut)
|
||||
|
||||
# Social Apps
|
||||
@@ -229,6 +244,9 @@ windowrulev2 = float, class:(qt5ct)
|
||||
windowrulev2 = float, title:(Open File)
|
||||
windowrulev2 = float, title:(Open Folder)
|
||||
windowrulev2 = float, title:(Save As)
|
||||
windowrulev2 = float, title:(Preferences)
|
||||
|
||||
windowrulev2 = float, title:(Add)
|
||||
|
||||
windowrulev2 = size 450 450, class:(Gnuplot)
|
||||
windowrulev2 = move 100 203, class:(Gnuplot)
|
||||
@@ -241,7 +259,9 @@ windowrulev2 = float, title:(Select Document)
|
||||
windowrulev2 = float, class:(Nextcloud)
|
||||
windowrulev2 = move 1250 28, class:(Nextcloud)
|
||||
windowrulev2 = move 700 50, title:(Nextcloud Settings)
|
||||
|
||||
windowrulev2 = size 700 800, title:(Nextcloud Settings)
|
||||
windowrulev2 = size 1200 900, title:(Add)
|
||||
|
||||
windowrulev2 = size 800 450, class:(org.pulseaudio.pavucontrol)
|
||||
windowrulev2 = move 40 80, class:(org.pulseaudio.pavucontrol)
|
||||
|
||||
23
gui/dot-config/hypr/shaders/grayscale-custom.glsl
Normal file
23
gui/dot-config/hypr/shaders/grayscale-custom.glsl
Normal file
@@ -0,0 +1,23 @@
|
||||
#version 300 es
|
||||
|
||||
precision highp float;
|
||||
|
||||
in vec2 v_texcoord;
|
||||
uniform sampler2D tex;
|
||||
out vec4 fragColor;
|
||||
|
||||
void main() {
|
||||
vec4 pixColor = texture(tex, v_texcoord);
|
||||
float gray = 0.0;
|
||||
|
||||
// Get gray with luminosity and hdr
|
||||
// https://en.wikipedia.org/wiki/Grayscale#Luma_coding_in_video_systems
|
||||
gray = dot(pixColor.rgb, vec3(0.2627, 0.6780, 0.0593));
|
||||
|
||||
// Change contrast
|
||||
float contrast = 0.95;
|
||||
gray = (gray - 0.5) * contrast + 0.5;
|
||||
gray = clamp(gray, 0.0, 1.0);
|
||||
|
||||
fragColor = vec4(vec3(gray), pixColor.a);
|
||||
}
|
||||
Reference in New Issue
Block a user