fix the fonts
This commit is contained in:
parent
e9f54dd72f
commit
8a33eb523f
46
home-manager/kde-connect-commands.json
Normal file
46
home-manager/kde-connect-commands.json
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"command": "systemctl poweroff",
|
||||||
|
"name": "shutdown"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "systemctl reboot",
|
||||||
|
"name": "reboot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "systemctl suspend",
|
||||||
|
"name": "suspend"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "systemctl hibernate",
|
||||||
|
"name": "hibernate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "loginctl lock-session",
|
||||||
|
"name": "lock"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "loginctl unlock-session",
|
||||||
|
"name": "unlock"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "qdbus org.kde.kglobalaccel /component/kmix invokeShortcut \"mute\"",
|
||||||
|
"name": "mute"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "qdbus org.kde.kglobalaccel /component/kmix invokeShortcut \"mic_mute\"",
|
||||||
|
"name": "mute mic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "file=/tmp/$(hostname)_$(date \"+%Y%m%d_%H%M%S\").png; spectacle -bo \"${file}\" && while ! [ -f \"${file}\" ]; do sleep 0.5; done && kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --share \"${file}\"",
|
||||||
|
"name": "screenshot to phone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "file=\"$HOME/Images/WebcamImage_$(date \"+%Y%m%d_%H%M%S\").jpg\"; ffmpeg -f video4linux2 -s 1280x720 -i /dev/video0 -ss 0:0:2 -frames 1 \"${file}\" && kdeconnect-cli -d $(kdeconnect-cli -a --id-only) --share \"${file}\"",
|
||||||
|
"name": "webcam to phone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "",
|
||||||
|
"name": ""
|
||||||
|
}
|
||||||
|
]
|
|
@ -36,6 +36,7 @@
|
||||||
_7zz = pkgs._7zz.override {useUasm = true;};
|
_7zz = pkgs._7zz.override {useUasm = true;};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
stylix.enable = true;
|
||||||
# stylix = {
|
# stylix = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# autoEnable = true;
|
# autoEnable = true;
|
||||||
|
|
|
@ -107,8 +107,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
monospace = {
|
monospace = {
|
||||||
package = pkgs.nerd-fonts.fira-mono;
|
package = pkgs.dejavu_fonts;
|
||||||
name = "Fira Code nerd Font Mono";
|
name = "DejaVu Sans Mono";
|
||||||
};
|
};
|
||||||
|
|
||||||
sansSerif = {
|
sansSerif = {
|
||||||
|
@ -123,6 +123,12 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fonts.packages = [
|
||||||
|
pkgs.dejavu_fonts
|
||||||
|
pkgs.noto-fonts
|
||||||
|
pkgs.nerd-fonts.fira-mono
|
||||||
|
];
|
||||||
|
|
||||||
# Enable completion of system packages by zsh
|
# Enable completion of system packages by zsh
|
||||||
environment.pathsToLink = ["/share/zsh"];
|
environment.pathsToLink = ["/share/zsh"];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue