From ae06a21eb66ee2acce2324f855bd001079be19a9 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 8 May 2023 16:23:50 +0200 Subject: add cliphist at start --- config/hyprland/hypr/hyprland.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'config/hyprland/hypr/hyprland.conf') diff --git a/config/hyprland/hypr/hyprland.conf b/config/hyprland/hypr/hyprland.conf index e7048ae..3f3cd6f 100644 --- a/config/hyprland/hypr/hyprland.conf +++ b/config/hyprland/hypr/hyprland.conf @@ -6,6 +6,7 @@ source = ./env.conf exec-once = gammastep & waybar exec-once = swaybg -i ~/pics/wallpaper +exec-once = wl-paste --watch cliphist store input { kb_layout = us -- cgit v1.2.3 From fbdb5aba68311aee6f00d08420b027ca6b958bbb Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 10 May 2023 20:42:05 +0200 Subject: remove mouse timeout --- config/hyprland/hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/hyprland/hypr/hyprland.conf') diff --git a/config/hyprland/hypr/hyprland.conf b/config/hyprland/hypr/hyprland.conf index 3f3cd6f..36f85a5 100644 --- a/config/hyprland/hypr/hyprland.conf +++ b/config/hyprland/hypr/hyprland.conf @@ -33,7 +33,7 @@ general { layout = dwindle - cursor_inactive_timeout = 2 + cursor_inactive_timeout = 0 } misc { -- cgit v1.2.3 From bb60e3bb77810fc989a50d4a3eef27272e6ffd12 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 7 Jun 2023 12:26:26 +0200 Subject: use startup script --- config/hyprland/hypr/hyprland.conf | 4 +--- config/hyprland/hypr/startup.sh | 5 +++++ 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100755 config/hyprland/hypr/startup.sh (limited to 'config/hyprland/hypr/hyprland.conf') diff --git a/config/hyprland/hypr/hyprland.conf b/config/hyprland/hypr/hyprland.conf index 36f85a5..8aa437e 100644 --- a/config/hyprland/hypr/hyprland.conf +++ b/config/hyprland/hypr/hyprland.conf @@ -4,9 +4,7 @@ monitor=,preferred,auto,1 source = ./env.conf -exec-once = gammastep & waybar -exec-once = swaybg -i ~/pics/wallpaper -exec-once = wl-paste --watch cliphist store +exec-once = $HOME/.config/hypr/startup.sh input { kb_layout = us diff --git a/config/hyprland/hypr/startup.sh b/config/hyprland/hypr/startup.sh new file mode 100755 index 0000000..ab0e48b --- /dev/null +++ b/config/hyprland/hypr/startup.sh @@ -0,0 +1,5 @@ +#!/bin/sh +swaybg -i ~/pics/wallpaper & +waybar & +gammastep & +wl-paste --watch cliphist store & -- cgit v1.2.3