feat: added some aliases
This commit is contained in:
parent
3e27cb522e
commit
f62076bbd3
|
@ -12,11 +12,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
gtk_theme_variant = "light";
|
gtk_theme_variant = "light";
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# transparent bg:)
|
# transparent bg:)
|
||||||
background_opacity = 0.3;
|
background_opacity = 0.6;
|
||||||
fonts.normal.family = "Source Code Pro";
|
fonts.normal.family = "Source Code Pro";
|
||||||
|
|
||||||
colors = {
|
colors = {
|
||||||
|
@ -29,7 +28,7 @@
|
||||||
background = "#18354f";
|
background = "#18354f";
|
||||||
};
|
};
|
||||||
primary = {
|
primary = {
|
||||||
background = "#f7fff7";
|
background = "#d1d5ff";
|
||||||
foreground = "#18354f";
|
foreground = "#18354f";
|
||||||
};
|
};
|
||||||
normal = {
|
normal = {
|
||||||
|
@ -37,19 +36,19 @@
|
||||||
red = "#c880b7";
|
red = "#c880b7";
|
||||||
blue = "#6f38c7";
|
blue = "#6f38c7";
|
||||||
yellow = "#8de336";
|
yellow = "#8de336";
|
||||||
green = "#2ec0f9";
|
green = "#00a3e3";
|
||||||
magenta = "#fc90c3";
|
magenta = "#ff4a9f";
|
||||||
cyan = "#ff577e";
|
cyan = "#ff577e";
|
||||||
white = "#e2e8ef";
|
white = "#e2e8ef";
|
||||||
};
|
};
|
||||||
bright = {
|
bright = {
|
||||||
black = "#5e105c";
|
black = "#5e105c";
|
||||||
red = "#ec9ded";
|
red = "#b32ab5";
|
||||||
green = "#2ec0f9";
|
green = "#2ec0f9";
|
||||||
# green = "#b726d4";
|
# green = "#b726d4";
|
||||||
yellow = "#fff773";
|
yellow = "#ded433";
|
||||||
blue = "#75d5fa";
|
blue = "#4fb4db";
|
||||||
magenta = "#ffb3d7";
|
magenta = "#b58297";
|
||||||
cyan = "#ffcf66";
|
cyan = "#ffcf66";
|
||||||
white = "#ffffff";
|
white = "#ffffff";
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,6 +2,16 @@
|
||||||
ls = "exa -l";
|
ls = "exa -l";
|
||||||
sl = "sl -e";
|
sl = "sl -e";
|
||||||
|
|
||||||
|
# WIfi stuff
|
||||||
|
wifi = "sudo nmcli con up id";
|
||||||
|
|
||||||
|
# Volume controls
|
||||||
|
vup = "amixer set Master 8%+";
|
||||||
|
vdown = "amixer set Master 8%-";
|
||||||
|
|
||||||
|
# Rebuuild nixos
|
||||||
|
rebuild = "sudo nixos-rebuild switch --flake ~/Projects/nixos-config/";
|
||||||
|
|
||||||
# Render git repo using gource
|
# Render git repo using gource
|
||||||
"git-render" = "gource -f -s 1 -c 4 --key";
|
"git-render" = "gource -f -s 1 -c 4 --key";
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,4 +69,4 @@ main =
|
||||||
|
|
||||||
startup :: X ()
|
startup :: X ()
|
||||||
startup = do
|
startup = do
|
||||||
spawn "xwallpaper --focus ./gradient.jpg"
|
spawn "xwallpaper --zoom ./background.jpg"
|
||||||
|
|
Loading…
Reference in a new issue