mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
6cbba309b2
Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
96 lines
1.9 KiB
TOML
96 lines
1.9 KiB
TOML
name = "Utilities"
|
|
|
|
[[data]]
|
|
name = "WiFi Manager"
|
|
script = "wifi-control.sh"
|
|
|
|
[[data]]
|
|
name = "Bluetooth Manager"
|
|
script = "bluetooth-control.sh"
|
|
|
|
[[data]]
|
|
name = "Numlock on Startup"
|
|
script = "numlock.sh"
|
|
|
|
[[data]]
|
|
name = "Ollama"
|
|
script = "ollama.sh"
|
|
|
|
[[data]]
|
|
name = "Service Manager"
|
|
script = "service-control.sh"
|
|
|
|
[[data]]
|
|
name = "Auto Login"
|
|
script = "auto-login.sh"
|
|
|
|
[[data]]
|
|
name = "Bootable USB Creator"
|
|
script = "create-bootable-usb.sh"
|
|
|
|
[[data]]
|
|
name = "Auto Power Profiling"
|
|
script = "power-profile.sh"
|
|
|
|
[[data]]
|
|
name = "Timeshift Backup"
|
|
script = "timeshift.sh"
|
|
|
|
[[data]]
|
|
name = "Monitor Control"
|
|
|
|
[[data.preconditions]]
|
|
matches = true
|
|
data = { environment = "XDG_SESSION_TYPE" }
|
|
values = ["x11", "X11", "xorg", "Xorg", "tty"]
|
|
|
|
[[data.preconditions]]
|
|
matches = true
|
|
data = { environment = "DISPLAY" }
|
|
values = [":0", ":1", ":2", ":3", ":4", ":5", ":6", ":7", ":8", ":9"]
|
|
|
|
[[data.entries]]
|
|
name = "Duplicate Displays"
|
|
script = "monitor-control/duplicate_displays.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Extend Displays"
|
|
script = "monitor-control/extend_displays.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Auto Detect Displays"
|
|
script = "monitor-control/auto_detect_displays.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Enable Monitor"
|
|
script = "monitor-control/enable_monitor.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Disable Monitor"
|
|
script = "monitor-control/disable_monitor.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Set Primary Monitor"
|
|
script = "monitor-control/set_primary_monitor.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Change Orientation"
|
|
script = "monitor-control/change_orientation.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Manage Arrangement"
|
|
script = "monitor-control/manage_arrangement.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Scale Monitors"
|
|
script = "monitor-control/scale_monitor.sh"
|
|
|
|
[[data.entries]]
|
|
name = "Reset Scaling"
|
|
script = "monitor-control/reset_scaling.sh"
|
|
matches = true
|
|
|
|
[[data.entries]]
|
|
name = "Set Brightness"
|
|
script = "monitor-control/set_brightness.sh"
|
|
matches = true |