diff options
Diffstat (limited to '')
-rwxr-xr-x | .config/wayland/init.sh | 2 | ||||
-rwxr-xr-x | .local/bin/dmrun | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.config/wayland/init.sh b/.config/wayland/init.sh index d9231bc..a74eaf7 100755 --- a/.config/wayland/init.sh +++ b/.config/wayland/init.sh @@ -45,5 +45,7 @@ startif pipewire-pulse sleep 1 startif wireplumber startif copyq +startif nextcloud +startif stalonetray notify-send -u normal 'Welcome' "$icon Welcome back, partner!" firefox & diff --git a/.local/bin/dmrun b/.local/bin/dmrun index f47c232..41c0e0e 100755 --- a/.local/bin/dmrun +++ b/.local/bin/dmrun @@ -11,7 +11,11 @@ sub main if (@ARGV == 1) { $color = $ARGV[0]; } - return exec("dmenu_run -i -sb '$color' -shb '$color'"); + my $menu = "dmenu_run -sb '$color' -shb '$color'"; + if (defined $ENV{WAYLAND_DISPLAY}) { + $menu = "wmenu-run -S '$color'"; + } + return exec("$menu -i"); } main(); |