1

Compare commits

..

4 Commits

4 changed files with 33 additions and 12 deletions

View File

@ -142,6 +142,7 @@
autostart = {
immediate = [
"kitty"
"zeal"
"nextcloud --background"
"protonvpn-app"
@ -176,13 +177,12 @@
};
floating = [
{
class = "org.kde.polkit-kde-authentication-agent-1";
}
{class = "org.kde.polkit-kde-authentication-agent-1";}
{
class = "thunar";
title = "File Operation Progress";
}
{class = "ffplay";}
];
transparent-opacity = "0.75";

View File

@ -74,7 +74,9 @@ in {
};
mpd-discord-rpc = {
enable = true;
# NOTE: Creates a new thread for each IPC request but don't cleans them up?
# They just keep accumulating when discord is not running lol
enable = false;
# NOTE: Bitch wants to create a default config file inside a
# read-only filesystem when changing settings here...

View File

@ -301,10 +301,15 @@ _: let
{
mode = "n";
key = "<leader>e";
# action = "<cmd>lua Snacks.explorer.open({ enter = false, on_show = function() vim.cmd('wincmd =') end })<cr>";
action = "<cmd>Neotree action=show toggle=true<cr><C-w>=";
options.desc = "Toggle Explorer";
}
{
mode = "n";
key = "<leader>E";
action = "<cmd>Neotree<cr>";
options.desc = "Focus Explorer";
}
{
mode = "n";
key = "<leader>n";

View File

@ -220,26 +220,40 @@ with mylib.networking; {
earlySetup = true;
useXkbConfig = true;
packages = [pkgs.terminus_font];
font = "Lat2-Terminus16";
font = "ter-220b";
# Normal Bright
# -------- -------
# 0 Black 8 Black
# 1 Red 9 Red
# 2 Yellow 10 Yellow
# 3 Green 11 Green
# 4 Blue 12 Blue
# 5 Magenta 13 Magenta
# 6 Cyan 14 Cyan
# 7 White 15 White
colors = let
color = config.home-manager.users.${username}.modules.color;
in [
color.hex.subtext1
# 0 - 7
"000000" # Dark black
color.hex.red
color.hex.green
color.hex.yellow
color.hex.yellow # Swapped with green for kitty consistency
color.hex.blue
color.hex.pink
color.hex.teal
color.hex.surface2
color.hex.subtext0
color.hex.text # Dark white
# 8 - 15
color.hex.surface2 # Light black
color.hex.red
color.hex.green
color.hex.yellow
color.hex.yellow # Swapped with green for kitty consistency
color.hex.blue
color.hex.pink
color.hex.teal
color.hex.surface1
"ffffff" # Light white
];
};