From ba66a74a596997af8a40ca6394c4df1b790b99aa Mon Sep 17 00:00:00 2001 From: Josh Taylor Date: Wed, 11 Jan 2023 16:26:00 +0800 Subject: [PATCH] Split Android Studio, add dbus-daemon, systemd-resolved and github copilot --- 00-default/android-studio.rules | 5 +---- 00-default/compilers/java.rules | 2 ++ 00-default/tools/_systemd.rules | 3 +++ 00-default/tools/dbus.rules | 3 +++ 00-default/tools/github_copilot.rules | 2 ++ 00-default/tools/qemu.rules | 2 ++ 6 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 00-default/compilers/java.rules create mode 100644 00-default/tools/dbus.rules create mode 100644 00-default/tools/github_copilot.rules create mode 100644 00-default/tools/qemu.rules diff --git a/00-default/android-studio.rules b/00-default/android-studio.rules index 660557d..43d0b47 100644 --- a/00-default/android-studio.rules +++ b/00-default/android-studio.rules @@ -1,5 +1,2 @@ { "name": "android-studio", "type": "Heavy_CPU" } -{ "name": "avd", "type": "Heavy_CPU" } -{ "name": "java", "type": "Heavy_CPU" } -{ "name": "qemu-system-x86_64", "type": "Heavy_CPU" } -{ "name": "qemu-system-x86", "type": "Heavy_CPU" } +{ "name": "avd", "type": "Heavy_CPU" } \ No newline at end of file diff --git a/00-default/compilers/java.rules b/00-default/compilers/java.rules new file mode 100644 index 0000000..7b47acb --- /dev/null +++ b/00-default/compilers/java.rules @@ -0,0 +1,2 @@ +# It's java. What did you think the type would be? ಠ_ಠ +{ "name": "java", "type": "Heavy_CPU" } diff --git a/00-default/tools/_systemd.rules b/00-default/tools/_systemd.rules index f80a446..f93f1d7 100644 --- a/00-default/tools/_systemd.rules +++ b/00-default/tools/_systemd.rules @@ -1,2 +1,5 @@ # https://www.freedesktop.org/wiki/Software/systemd/ { "name": "systemd-timesyncd", "type": "BG_CPUIO" } + +# DNS (https://wiki.archlinux.org/title/systemd-resolved) +{ "name": "systemd-resolved", "type": "BG_CPUIO" } \ No newline at end of file diff --git a/00-default/tools/dbus.rules b/00-default/tools/dbus.rules new file mode 100644 index 0000000..f03d3fe --- /dev/null +++ b/00-default/tools/dbus.rules @@ -0,0 +1,3 @@ +# D-Bus is a message bus system that provides an easy way for inter-process communication. +# https://wiki.archlinux.org/title/D-Bus and https://dbus.freedesktop.org/doc/dbus-daemon.1.html +{ "name": "dbus-daemon", "type": "Service" } diff --git a/00-default/tools/github_copilot.rules b/00-default/tools/github_copilot.rules new file mode 100644 index 0000000..ad69fbb --- /dev/null +++ b/00-default/tools/github_copilot.rules @@ -0,0 +1,2 @@ +# Github Copilot, doesn't seem to be an extra service with VSCode, just Jetbrains IDEs? +{ "name": "copilot-agent-linux", "type": "BG_CPUIO" } diff --git a/00-default/tools/qemu.rules b/00-default/tools/qemu.rules new file mode 100644 index 0000000..50a9907 --- /dev/null +++ b/00-default/tools/qemu.rules @@ -0,0 +1,2 @@ +{ "name": "qemu-system-x86_64", "type": "Heavy_CPU" } +{ "name": "qemu-system-x86", "type": "Heavy_CPU" }