mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
18 lines
407 B
QML
18 lines
407 B
QML
import QtQuick
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import qs.modules.common.widgets
|
|
|
|
QuickToggleModel {
|
|
name: Translation.tr("Anti-flashbang")
|
|
tooltipText: Translation.tr("Anti-flashbang")
|
|
icon: "flash_off"
|
|
toggled: HyprlandAntiFlashbangShader.enabled
|
|
|
|
mainAction: () => {
|
|
HyprlandAntiFlashbangShader.toggle()
|
|
}
|
|
hasMenu: true
|
|
}
|