More awesome config
This commit is contained in:
parent
9f1a6ed9ff
commit
47547b9367
6 changed files with 56 additions and 3 deletions
|
@ -131,6 +131,7 @@
|
||||||
signal-desktop
|
signal-desktop
|
||||||
alacritty
|
alacritty
|
||||||
librewolf
|
librewolf
|
||||||
|
zathura
|
||||||
|
|
||||||
# File Management
|
# File Management
|
||||||
unzip # Zip Files
|
unzip # Zip Files
|
||||||
|
|
|
@ -39,10 +39,22 @@ with lib; {
|
||||||
source = ../../rsc/config/awesome;
|
source = ../../rsc/config/awesome;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
home.file.".config/picom/"={
|
home.file.".config/picom/" = {
|
||||||
source = ../../rsc/config/picom;
|
source = ../../rsc/config/picom;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
home.file.".config/rofi" = {
|
||||||
|
source = ../../rsc/config/rofi;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
home.file.".config/flameshot" = {
|
||||||
|
source = ../../rsc/config/flameshot;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
home.file.".config/zathura" = {
|
||||||
|
source = ../../rsc/config/zathura;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs;
|
systemPackages = with pkgs;
|
||||||
|
@ -52,6 +64,7 @@ with lib; {
|
||||||
redshift
|
redshift
|
||||||
xbindkeys
|
xbindkeys
|
||||||
clipmenu
|
clipmenu
|
||||||
|
flameshot
|
||||||
]
|
]
|
||||||
++ (with unstable; []);
|
++ (with unstable; []);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#
|
#
|
||||||
# KDE Plasma 5 Configuration
|
# KDE Plasma 5 Configuration
|
||||||
# Enable with "kde.enable = true;"
|
# Enable with "kde.enable = true;"
|
||||||
# Get the plasma configs in a file with $ nix run github:pjones/plasma-manager > <file>
|
|
||||||
#
|
#
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
|
|
@ -345,7 +345,7 @@ end, {
|
||||||
description = "Rofi powermenu",
|
description = "Rofi powermenu",
|
||||||
group = "launcher"
|
group = "launcher"
|
||||||
}), awful.key({modkey}, "space", function()
|
}), awful.key({modkey}, "space", function()
|
||||||
awful.util.spawn("/home/ghoscht/.config/rofi/launchers/type-2/launcher.sh")
|
awful.util.spawn("rofi -i -show drun -modi drun -show-icons")
|
||||||
end, {
|
end, {
|
||||||
description = "Rofi application menu",
|
description = "Rofi application menu",
|
||||||
group = "launcher"
|
group = "launcher"
|
||||||
|
|
37
rsc/config/zathura/catppuccin-mocha
Normal file
37
rsc/config/zathura/catppuccin-mocha
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
set default-fg "#CDD6F4"
|
||||||
|
set default-bg "#1E1E2E"
|
||||||
|
|
||||||
|
set completion-bg "#313244"
|
||||||
|
set completion-fg "#CDD6F4"
|
||||||
|
set completion-highlight-bg "#575268"
|
||||||
|
set completion-highlight-fg "#CDD6F4"
|
||||||
|
set completion-group-bg "#313244"
|
||||||
|
set completion-group-fg "#89B4FA"
|
||||||
|
|
||||||
|
set statusbar-fg "#CDD6F4"
|
||||||
|
set statusbar-bg "#313244"
|
||||||
|
|
||||||
|
set notification-bg "#313244"
|
||||||
|
set notification-fg "#CDD6F4"
|
||||||
|
set notification-error-bg "#313244"
|
||||||
|
set notification-error-fg "#F38BA8"
|
||||||
|
set notification-warning-bg "#313244"
|
||||||
|
set notification-warning-fg "#FAE3B0"
|
||||||
|
|
||||||
|
set inputbar-fg "#CDD6F4"
|
||||||
|
set inputbar-bg "#313244"
|
||||||
|
|
||||||
|
set recolor-lightcolor "#1E1E2E"
|
||||||
|
set recolor-darkcolor "#CDD6F4"
|
||||||
|
|
||||||
|
set index-fg "#CDD6F4"
|
||||||
|
set index-bg "#1E1E2E"
|
||||||
|
set index-active-fg "#CDD6F4"
|
||||||
|
set index-active-bg "#313244"
|
||||||
|
|
||||||
|
set render-loading-bg "#1E1E2E"
|
||||||
|
set render-loading-fg "#CDD6F4"
|
||||||
|
|
||||||
|
set highlight-color "#575268"
|
||||||
|
set highlight-fg "#F5C2E7"
|
||||||
|
set highlight-active-color "#F5C2E7"
|
3
rsc/config/zathura/zathurarc
Normal file
3
rsc/config/zathura/zathurarc
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
include catppuccin-mocha
|
||||||
|
set selection-clipboard clipboard
|
||||||
|
set recolor true
|
Loading…
Reference in a new issue