Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

main #419

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

main #419

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
42 changes: 42 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/powershell
{
"name": "codr",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/powershell:lts-debian-11",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"installOhMyZsh": true,
"installOhMyZshConfig": true,
"upgradePackages": true,
"username": "automatic",
"userUid": "automatic",
"userGid": "automatic"
}
},

"postCreateCommand": "sudo chsh vscode -s \"$(which pwsh)\"",

// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.defaultProfile.linux": "pwsh"
},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-vscode.powershell"
]
}
}

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
1 change: 1 addition & 0 deletions .devcontainer/wackymalton
Submodule wackymalton added at b81ee2
26 changes: 26 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/t:build",
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]
}
11 changes: 11 additions & 0 deletions readme
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#### High Performance DAC

#### - This module enables the "High Performance DAC" mode of Qualcomm's WCD9xx DAC to maximize its power and achieve the best audio quality possible.

##### • `Every phone powered by a Qualcomm processor has a built-in WCD9xx Audio DAC, but it is rarely configured to be used to its full potential by OEMs. By enabling High-Performance Mode, the audio quality of Qualcomm-powered devices will not only receive a boost in volume but will also sound clearer and crisper.`

##### • `Requires Kernel Support`

##### - INSTALLATION: Simply flash via any module manager and reboot.

###### Disclaimer: Naturally, you take all the responsibility for what happens to your device when you start messing around with things. I (Akera) will not be responsible for ANY damage caused to anyone's devices due to the use of this module.
1 change: 1 addition & 0 deletions wackymalton
Submodule wackymalton added at b81ee2