From 2c5b298ace1c1a02f3ed9ba8610ad69f4aca54ee Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sun, 27 Apr 2025 11:06:06 -0400 Subject: [PATCH] Add more autostart processes from previous setup --- README.org | 26 ++++++++++++++++++++++++++ hyprland.conf | 8 ++++++++ 2 files changed, 34 insertions(+) diff --git a/README.org b/README.org index 6d8a222..f9a7d2e 100644 --- a/README.org +++ b/README.org @@ -9,6 +9,10 @@ - [[#monitors][Monitors]] - [[#variables][Variables]] - [[#autostart][Autostart]] + - [[#status-bar][Status Bar]] + - [[#background-processes][Background Processes]] + - [[#display--compositor-setup][Display / Compositor Setup]] + - [[#applications][Applications]] - [[#environment-variables][Environment Variables]] - [[#permissions][Permissions]] - [[#look-and-feel][Look and Feel]] @@ -113,12 +117,34 @@ exec-once = uwsm app -- mycommand --arg1 --arg2 bind = SUPER, E, exec, uwsm app -- pcmanfm-qt.desktop #+END_EXAMPLE +*** Status Bar + #+BEGIN_SRC conf :tangle hyprland.conf exec-once = uwsm app -- waybar --config $HOME/.config/hypr/waybar/config.jsonc --style $HOME/.config/hypr/waybar/style.css & +#+END_SRC + +*** Background Processes + +#+BEGIN_SRC conf :tangle hyprland.conf +exec-once = uwsm app -- swayidle & +exec-once = uwsm app -- /usr/libexec/polkit-gnome-authentication-agent-1 & exec-once = uwsm app -- kdeconnectd --replace & exec-once = uwsm app -- $HOME/.scripts/dunst.sh --on & +exec-once = uwsm app -- wl-paste --type text --watch cliphist store & +exec-once = uwsm app -- wl-paste --type image --watch cliphist store & +#+END_SRC + +*** Display / Compositor Setup + +#+BEGIN_SRC conf :tangle hyprland.conf exec-once = uwsm app -- shikane & +exec-once = uwsm app -- $HOME/.azotebg & exec-once = uwsm app -- gammastep -x & +#+END_SRC + +*** Applications + +#+BEGIN_SRC conf :tangle hyprland.conf exec-once = uwsm app -- blueman-applet & exec-once = uwsm app -- nm-applet & exec-once = uwsm app -- kdeconnect-indicator & diff --git a/hyprland.conf b/hyprland.conf index 9085193..3eab622 100644 --- a/hyprland.conf +++ b/hyprland.conf @@ -5,10 +5,18 @@ $fileManager = thunar $menu = rofi -show combi -run-command "uwsm app -- {cmd}" exec-once = uwsm app -- waybar --config $HOME/.config/hypr/waybar/config.jsonc --style $HOME/.config/hypr/waybar/style.css & + +exec-once = uwsm app -- swayidle & +exec-once = uwsm app -- /usr/libexec/polkit-gnome-authentication-agent-1 & exec-once = uwsm app -- kdeconnectd --replace & exec-once = uwsm app -- $HOME/.scripts/dunst.sh --on & +exec-once = uwsm app -- wl-paste --type text --watch cliphist store & +exec-once = uwsm app -- wl-paste --type image --watch cliphist store & + exec-once = uwsm app -- shikane & +exec-once = uwsm app -- $HOME/.azotebg & exec-once = uwsm app -- gammastep -x & + exec-once = uwsm app -- blueman-applet & exec-once = uwsm app -- nm-applet & exec-once = uwsm app -- kdeconnect-indicator &