Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dotfiles/.config/hypr/conf/keybindings/default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ hl.bind(mainMod .. " + ALT + G", hl.dsp.exec_cmd("~/.config/hypr/scripts/gamemod
hl.bind(mainMod .. " + CTRL + L", hl.dsp.exec_cmd("~/.config/ml4w/scripts/ml4w-power -l"), { description = "Lock Screen" })
hl.bind(mainMod .. " + SHIFT + H", hl.dsp.exec_cmd("~/.config/ml4w/scripts/ml4w-toggle-hyprsunset"), { description = "Toggle Hyprsunset" })
hl.bind(mainMod .. " + Tab", hl.dsp.exec_cmd("qs -p ~/.local/share/quickshell-overview ipc call overview toggle"), { description = "Open Select Window Menu" })
hl.bind("ALT + Tab", hl.dsp.exec_cmd("qs -p ~/.config/quickshell/overview ipc call app-switcher next"), { description = "Switch applications on active workspace" })
hl.bind("CTRL + ALT + T", hl.dsp.exec_cmd("~/.config/ml4w/themes/themes.sh"), { description = "Open Select Window Menu" })

-- Special workspace (scratchpad)
Expand Down
9 changes: 9 additions & 0 deletions dotfiles/.config/ml4w/scripts/ml4w-autostart
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ info "Starting Quickshell Overview"
qs -p $HOME/.local/share/quickshell-overview &
info "Quickshell Overview started"

# Start Quickshell App Switcher
if [ -d "$HOME/.config/quickshell/overview" ]; then
if ! systemctl --user is-active --quiet quickshell-overview.service 2>/dev/null; then
info "Starting Quickshell App Switcher"
qs -p "$HOME/.config/quickshell/overview" &
info "Quickshell App Switcher started"
fi
fi

# Start ML4W Welcome App
info "Starting ML4W Welcome App"
if [ ! -f $HOME/.cache/ml4w-welcome-autostart ]; then
Expand Down
Loading