diff --git a/README.md b/README.md
index d1e49e3..26c99e6 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,8 @@ Workspace management
Switch to specific workspace
Miscellaneous
+ A-F12
+ Take screenshot
CA-Return
Open terminal (kitty)
CAS-r
diff --git a/TODO b/TODO
index 32d03ba..fb5aef4 100644
--- a/TODO
+++ b/TODO
@@ -29,3 +29,4 @@
[ ] Add polybar root filesystem usage module??
[ ] Test out bluetooth (https://nixos.wiki/wiki/Bluetooth)
[ ] Get a music player + get MPD to work (+last.fm with mpdscribble)
+[ ] Give yambar a try ;w;
diff --git a/configs/openbox/rc.xml b/configs/openbox/rc.xml
index 52a5c7a..7a5642d 100644
--- a/configs/openbox/rc.xml
+++ b/configs/openbox/rc.xml
@@ -9,23 +9,23 @@
LIMC
GohuFont
- 14
+ 11
GohuFont
- 14
+ 11
GohuFont
- 14
+ 11
GohuFont
- 14
+ 11
GohuFont
- 14
+ 11
@@ -107,6 +107,11 @@
+
+
+ flameshot gui
+
+
kitty
diff --git a/nixos/home/firefox.nix b/nixos/home/firefox.nix
index 1065365..3020d6b 100644
--- a/nixos/home/firefox.nix
+++ b/nixos/home/firefox.nix
@@ -70,6 +70,14 @@
}];
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
};
+ "Manpages" = {
+ urls = [{
+ template = "https://www.mankier.com/";
+ params = [
+ { name = "q"; value = "{searchTerms}"; }
+ ];
+ }];
+ };
"Bing".metaData.hidden = true;
"Google".metaData.hidden = true;
diff --git a/nixos/home/polybar.nix b/nixos/home/polybar.nix
index 7407c3e..deeba42 100644
--- a/nixos/home/polybar.nix
+++ b/nixos/home/polybar.nix
@@ -20,7 +20,7 @@
foreground = foreground;
width = "100%";
height = 32;
- font-0 = "GohuFont:style=Regular:size=14;3";
+ font-0 = "GohuFont:style=Regular:pixelsize=11;3";
modules-left = "xworkspaces audio";
modules-right = "cpu memory date";
module-margin = 1;
@@ -65,7 +65,7 @@
};
"module/audio" = {
type = "internal/alsa";
- master-soundcard = "hw:0";
+ master-soundcard = "hw:1";
master-mixer = "Master";
format-volume = "";
format-muted = "";
diff --git a/nixos/hosts/base.nix b/nixos/hosts/base.nix
index be397ff..c5ba029 100644
--- a/nixos/hosts/base.nix
+++ b/nixos/hosts/base.nix
@@ -88,6 +88,16 @@
};
};
+ systemd.services = {
+ flatpak-repo = {
+ wantedBy = [ "multi-user.target" ];
+ path = [ pkgs.flatpak ];
+ script = ''
+ flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
+ '';
+ };
+ };
+
xdg.portal = {
enable = true;
config = {
@@ -106,7 +116,6 @@
emoji = [ "Twitter Color Emoji" "Noto Color Emoji" ];
monospace = [ "Fira Code Light" ];
};
- subpixel.rgba = "rgb";
};
packages = with pkgs; [
fira-code
diff --git a/nixos/hosts/ioides/configuration.nix b/nixos/hosts/ioides/configuration.nix
index 799b244..764098b 100644
--- a/nixos/hosts/ioides/configuration.nix
+++ b/nixos/hosts/ioides/configuration.nix
@@ -31,6 +31,7 @@
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
+ fonts.fontconfig.subpixel.rgba = "rgb";
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";