aboutsummaryrefslogtreecommitdiff
path: root/hypr/hypr-zoom/hypr-zoom.go
diff options
context:
space:
mode:
Diffstat (limited to 'hypr/hypr-zoom/hypr-zoom.go')
-rw-r--r--hypr/hypr-zoom/hypr-zoom.go143
1 files changed, 143 insertions, 0 deletions
diff --git a/hypr/hypr-zoom/hypr-zoom.go b/hypr/hypr-zoom/hypr-zoom.go
new file mode 100644
index 0000000..d77606c
--- /dev/null
+++ b/hypr/hypr-zoom/hypr-zoom.go
@@ -0,0 +1,143 @@
+package main
+
+import (
+ "flag"
+ "fmt"
+ "math"
+ "os/exec"
+ "strconv"
+ "strings"
+ "time"
+
+ "github.com/fogleman/ease"
+)
+
+type EasingFunction func(t float64) float64
+type InterpolatorFunc func(s, e, t float64) float64
+
+// Linear interpolation function
+func lerp(start, end, t float64) float64 {
+ return start + t*(end-start)
+}
+
+func logInterp(start, end, t float64) float64 {
+ if t == 0 {
+ return start
+ }
+ return start + (end-start)*(math.Log(t+1)/math.Log(2))
+}
+
+// Main animation loop
+func zoom(duration int, steps int, startValue, endValue float64, easingFunc EasingFunction, interInterpolatorFunc InterpolatorFunc) {
+ interval := float64(duration) / float64(steps) / 1000
+
+ for i := 0; i <= steps; i++ {
+ t := float64(i) / float64(steps)
+ easedT := easingFunc(t)
+ interpolatedValue := interInterpolatorFunc(startValue, endValue, easedT)
+
+ _ = exec.Command("hyprctl", "keyword", "cursor:zoom_factor", fmt.Sprintf("%f", interpolatedValue)).Run()
+ time.Sleep(time.Duration(interval * float64(time.Second)))
+ }
+}
+
+// Execute a shell command and return its output as a string
+func executeCommand(command string) (string, error) {
+ output, err := exec.Command("bash", "-c", command).Output()
+ if err != nil {
+ return "", err
+ }
+ return string(output), nil
+}
+
+func main() {
+ output, err := executeCommand("hyprctl getoption cursor:zoom_factor | grep 'float:' | awk '{print $2}' | tr -d '[:space:]'")
+ if err != nil {
+ fmt.Println("Error getting initial zoom factor:", err)
+ return
+ }
+
+ duration := flag.Int("duration", 500, "Duration of the animation in milliseconds")
+ steps := flag.Int("steps", 100, "Number of steps in the animation")
+ easing := flag.String("easing", "InOutExpo", "Easing function to use")
+ easingOut := flag.String("easingOut", "", "Easing function to use for zoom-out (optional)")
+ targetZoom := flag.Float64("target", 2.0, "Zoom Target")
+ interpolator := flag.String("interp", "Log", "Animation interpolator function")
+ force := flag.Bool("force", false, "Forcing target parameter even if zoom is not equal to 1")
+ flag.Parse()
+
+ initialZoom, err := strconv.ParseFloat(strings.TrimSpace(output), 64)
+ if err != nil {
+ fmt.Println("Error parsing initial zoom factor:", err)
+ return
+ }
+
+ if *steps <= 0 {
+ fmt.Println("Error: `steps` must be greater than 0.")
+ return
+ }
+
+ easingFunctions := map[string]EasingFunction{
+ "Linear": ease.Linear,
+ "InQuad": ease.InQuad,
+ "OutQuad": ease.OutQuad,
+ "InOutQuad": ease.InOutQuad,
+ "InCubic": ease.InCubic,
+ "OutCubic": ease.OutCubic,
+ "InOutCubic": ease.InOutCubic,
+ "InQuart": ease.InQuart,
+ "OutQuart": ease.OutQuart,
+ "InOutQuart": ease.InOutQuart,
+ "InQuint": ease.InQuint,
+ "OutQuint": ease.OutQuint,
+ "InOutQuint": ease.InOutQuint,
+ "InSine": ease.InSine,
+ "OutSine": ease.OutSine,
+ "InOutSine": ease.InOutSine,
+ "InExpo": ease.InExpo,
+ "OutExpo": ease.OutExpo,
+ "InOutExpo": ease.InOutExpo,
+ "InCirc": ease.InCirc,
+ "OutCirc": ease.OutCirc,
+ "InOutCirc": ease.InOutCirc,
+ // "InElastic": ease.InElastic,
+ // "OutElastic": ease.OutElastic,
+ // "InOutElastic": ease.InOutElastic,
+ "InBack": ease.InBack,
+ "OutBack": ease.OutBack,
+ "InOutBack": ease.InOutBack,
+ "InBounce": ease.InBounce,
+ "OutBounce": ease.OutBounce,
+ "InOutBounce": ease.InOutBounce,
+ "InSquare": ease.InSquare,
+ "OutSquare": ease.OutSquare,
+ "InOutSquare": ease.InOutSquare,
+ }
+
+ interpolatorFunctions := map[string]InterpolatorFunc{
+ "Log": logInterp,
+ "Linear": lerp,
+ }
+
+ interpolatorFunc, exists := interpolatorFunctions[*interpolator]
+ if !exists {
+ fmt.Println("Unknown interpolator function:", *interpolator, "Set to default")
+ interpolatorFunc = interpolatorFunctions["Log"]
+ }
+
+ easingFunction, exists := easingFunctions[*easing]
+ if !exists {
+ fmt.Println("Unknown easing function:", *easing, "Set to default")
+ easingFunction = easingFunctions["InOutExpo"]
+ }
+
+ if (initialZoom > 1 && !*force) {
+ *targetZoom = 1.0
+ _, exists := easingFunctions[*easingOut]
+ if exists {
+ easingFunction = easingFunctions[*easingOut]
+ }
+ }
+
+ zoom(*duration, *steps, initialZoom, *targetZoom, easingFunction, interpolatorFunc)
+}