forked from colonelpanic/dotfiles
Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -266,10 +266,11 @@
|
||||
@define-color white #FFFFFF;
|
||||
|
||||
@define-color active-window-color @white;
|
||||
@define-color urgent-window-color @;
|
||||
@define-color font-color @base5;
|
||||
@define-color urgent-window-color @blue-grey;
|
||||
@define-color font-color @white;
|
||||
@define-color font-shadow-color @black;
|
||||
@define-color menu-background-color @white;
|
||||
@define-color menu-font-color @black;
|
||||
@define-color bar-background @base0;
|
||||
@define-color bar-background @pink-darken-4;
|
||||
@define-color accent @red;
|
||||
@define-color menu-highlight @magenta;
|
||||
@define-color menu-highlight @deep-orange;
|
||||
|
Submodule dotfiles/config/taffybar/taffybar updated: eab3b26dee...dd3d05555f
@@ -10,7 +10,7 @@
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
color: @font-color;
|
||||
text-shadow: 2px 2px @black;
|
||||
text-shadow: 1px 1px @font-shadow-color;
|
||||
}
|
||||
|
||||
.taffy-box {
|
||||
@@ -45,11 +45,9 @@
|
||||
padding-left: 2px;
|
||||
padding-top: 0px;
|
||||
font-size: 10pt;
|
||||
color: @white;
|
||||
opacity: 1;
|
||||
font-weight: bold;
|
||||
transition: color .5s;
|
||||
text-shadow: 2px 2px @black;
|
||||
}
|
||||
|
||||
.contents .window-icon {
|
||||
|
@@ -134,7 +134,7 @@ cssFilesByHostname =
|
||||
main = do
|
||||
hostName <- getHostName
|
||||
homeDirectory <- getHomeDirectory
|
||||
let relativeFiles = fromMaybe ["gotham.css", "taffybar.css"] $ lookup hostName cssFilesByHostname
|
||||
let relativeFiles = fromMaybe ["taffybar.css"] $ lookup hostName cssFilesByHostname
|
||||
cssFiles <- mapM (getUserConfigFile "taffybar") relativeFiles
|
||||
|
||||
let myCPU = deocrateWithSetClassAndBoxes "cpu" $
|
||||
|
Submodule dotfiles/config/xmonad/xmonad updated: 3e76270245...aa18707c3e
Submodule dotfiles/config/xmonad/xmonad-contrib updated: 3509e91b15...22a64f65ae
7
dotfiles/lib/bin/quill_from_seed.sh
Executable file
7
dotfiles/lib/bin/quill_from_seed.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
encrypted_seed_file="$1"
|
||||
|
||||
shift
|
||||
|
||||
gpg --decrypt "$encrypted_seed_file" 2>/dev/null | keysmith private-key -f - -o - | quill --pem-file - "$@"
|
Submodule nixos/home-manager updated: ad5aea1a32...ec260995e2
@@ -71,23 +71,20 @@
|
||||
|
||||
services.git-sync = {
|
||||
enable = true;
|
||||
repositories = [
|
||||
{
|
||||
name = "config";
|
||||
repositories = {
|
||||
config = {
|
||||
path = "/home/imalison/config";
|
||||
uri = "git@github.com:IvanMalison/config.git";
|
||||
}
|
||||
{
|
||||
name = "org";
|
||||
};
|
||||
org = {
|
||||
path = "/home/imalison/org";
|
||||
uri = "git@github.com:IvanMalison/org.git";
|
||||
}
|
||||
{
|
||||
name = "password-store";
|
||||
};
|
||||
password-store = {
|
||||
path = "/home/imalison/.password-store";
|
||||
uri = "git@github.com:IvanMalison/.password-store.git";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services.setxkbmap = {
|
||||
|
@@ -6,6 +6,7 @@
|
||||
];
|
||||
|
||||
hardware.raspberry-pi."4".fkms-3d.enable = true;
|
||||
hardware.raspberry-pi."4".audio.enable = true;
|
||||
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_rpi4;
|
||||
@@ -40,7 +41,6 @@
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
raspberrypi-eeprom
|
||||
piclone
|
||||
];
|
||||
|
||||
nix = {
|
||||
|
Reference in New Issue
Block a user