1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Lint it all (code review) at 00:00

This commit is contained in:
RGBCube 2023-11-09 23:53:23 +03:00
parent f44b372ed6
commit effef516c4
No known key found for this signature in database
5 changed files with 6 additions and 7 deletions

View file

@ -21,8 +21,8 @@ homeConfiguration "nixos" {
alignment = "center";
font = "OpenSans 12";
origin = "top-center";
offset = "0x20";
origin = "top-center";
};
settings.urgency_low = {

View file

@ -7,7 +7,6 @@
};
programs.helix = enabled {
settings.theme = "gruvbox_dark_hard";
settings.editor = {
@ -26,14 +25,14 @@
};
settings.editor.statusline.mode = {
normal = "NORMAL";
insert = "INSERT";
normal = "NORMAL";
select = "SELECT";
};
settings.editor.whitespace = {
render.tab = "all";
characters.tab = "";
render.tab = "all";
};
settings.keys.normal.D = "extend_to_line_end";

View file

@ -1,5 +1,5 @@
#!/bin/sh
dunstctl close-all;
volume_float=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed 's/Volume: //' )
volume_float=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed "s/Volume: //")
dunstify --timeout 1000 "$(awk "BEGIN { print($volume_float * 100) }")%"

View file

@ -1,7 +1,7 @@
{ systemConfiguration, ... }:
systemConfiguration {
console.keyMap = "trq";
console.keyMap = "trq";
time.timeZone = "Europe/Istanbul";

View file

@ -5,9 +5,9 @@ systemConfiguration {
sound = enabled {};
services.pipewire = enabled {
pulse = enabled {};
alsa = enabled {
support32Bit = true;
};
pulse = enabled {};
};
}