diff --git a/CHANGELOG b/CHANGELOG index 939d60c..8978dfd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -9,6 +9,7 @@ https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9 - Animations can be disabled in the Dotfiles Settings app - Animations can be toggled (enabled/disabled) temporarily with SUPER + SHIFT + A - Keyboard layout is part of the system information module of waybar +- nm-applet can be started from the ML4W Welcome App menu Settings/System Version 2.8.4 https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.8.4 diff --git a/apps/ML4W_Hyprland_Settings-x86_64.AppImage b/apps/ML4W_Hyprland_Settings-x86_64.AppImage index 4f9efdc..5561c0f 100755 Binary files a/apps/ML4W_Hyprland_Settings-x86_64.AppImage and b/apps/ML4W_Hyprland_Settings-x86_64.AppImage differ diff --git a/apps/ML4W_Welcome-x86_64.AppImage b/apps/ML4W_Welcome-x86_64.AppImage index cd7b696..dd4fc47 100755 Binary files a/apps/ML4W_Welcome-x86_64.AppImage and b/apps/ML4W_Welcome-x86_64.AppImage differ diff --git a/hypr/conf/autostart.conf b/hypr/conf/autostart.conf index 5a28c57..8a1400a 100644 --- a/hypr/conf/autostart.conf +++ b/hypr/conf/autostart.conf @@ -18,11 +18,6 @@ exec-once = ~/dotfiles/hypr/scripts/gtk.sh exec-once = hypridle # exec-once = swayidle -w timeout 600 'swaylock -f' timeout 660 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'swaylock -f' -# Load network manager applet -# START NM APPLET -# exec-once = nm-applet --indicator -# END NM APPLET - # Load cliphist history exec-once = wl-paste --watch cliphist store diff --git a/hypr/conf/environments/default.conf b/hypr/conf/environments/default.conf index 6e76947..8f22e1b 100644 --- a/hypr/conf/environments/default.conf +++ b/hypr/conf/environments/default.conf @@ -4,5 +4,11 @@ # ----------------------------------------------------- env = XCURSOR_SIZE,24 +env = XDG_CURRENT_DESKTOP,Hyprland +env = XDG_SESSION_TYPE,wayland +env = XDG_SESSION_DESKTOP,Hyprland env = QT_QPA_PLATFORM,wayland - +env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1 +env = QT_AUTO_SCREEN_SCALE_FACTOR,1 +env = MOZ_ENABLE_WAYLAND,1 +env = GDK_SCALE,1 diff --git a/hypr/conf/environments/kvm.conf b/hypr/conf/environments/kvm.conf index e4cc617..d63d5f7 100644 --- a/hypr/conf/environments/kvm.conf +++ b/hypr/conf/environments/kvm.conf @@ -4,6 +4,13 @@ # ----------------------------------------------------- env = XCURSOR_SIZE,24 +env = XDG_CURRENT_DESKTOP,Hyprland +env = XDG_SESSION_TYPE,wayland +env = XDG_SESSION_DESKTOP,Hyprland env = QT_QPA_PLATFORM,wayland +env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1 +env = QT_AUTO_SCREEN_SCALE_FACTOR,1 +env = MOZ_ENABLE_WAYLAND,1 +env = GDK_SCALE,1 env = WLR_NO_HARDWARE_CURSORS, 1 env = WLR_RENDERER_ALLOW_SOFTWARE, 1 diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index b0d198c..45ae6ff 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -6,6 +6,9 @@ # |___/|_| # # ----------------------------------------------------- +# IMPORTANT: Don't overwrite ML4W configuration. +# Create your own custom configuration variation instead. +# https://gitlab.com/stephan-raabe/dotfiles#hyprland-configuration-variations # ----------------------------------------------------- # Monitor diff --git a/scripts/nm-applet.sh b/scripts/nm-applet.sh new file mode 100755 index 0000000..37c01e2 --- /dev/null +++ b/scripts/nm-applet.sh @@ -0,0 +1,6 @@ +#!/bin/bash +if [[ "$1" == "stop" ]]; then + killall nm-applet +else + nm-applet --indicator & +fi