24/07/2026

This commit is contained in:
Domipoke
2026-07-24 14:34:57 +02:00
parent 44b9c40c44
commit 24a7513e69
36 changed files with 177 additions and 158 deletions
+40
View File
@@ -0,0 +1,40 @@
-- #################
-- ### AUTOSTART ###
-- #################
hl.on("hyprland.start", function()
hl.exec_cmd("wl-paste --type text --watch cliphist store") -- Stores only text data
hl.exec_cmd("wl-paste --type image --watch cliphist store") -- Stores only image data
hl.exec_cmd("wl-clip-persist --clipboard regular")
hl.exec_cmd("systemctl --user start hyprpolkitagent")
hl.exec_cmd("hypridle")
-- Notification
-- hl.exec_cmd("mako")
-- hl.exec_cmd("~/.config/mako/scripts/spotify-notify.sh")
-- For screen sharing
hl.exec_cmd("dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP")
hl.exec_cmd("systemctl --user import-environment")
hl.exec_cmd("~/.config/hypr/scripts/screensharing.sh")
hl.exec_cmd("xwaylandvideobridge")
-- Bluetooth
-- hl.exec_cmd("blueman-applet") -- Make sure you have installed blueman
-- hl.exec_cmd("nm-applet")
-- hl.exec_cmd("blueman-tray")
-- For keyboard
-- hl.exec_cmd("fcitx5 -D")
-- Start plugins
hl.exec_cmd("hyprpm reload")
hl.exec_cmd("kded6")
hl.exec_cmd("kbuildsycoca6")
-- quickshell profile
hl.env("qsConfig", "end4-pC")
hl.exec_cmd("qs")
end)