mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-31 07:03:36 +00:00
~
This commit is contained in:
parent
35e074cae2
commit
5abe55e230
7 changed files with 34 additions and 8 deletions
|
@ -57,6 +57,8 @@ Workspace management
|
|||
Switch to specific workspace
|
||||
|
||||
Miscellaneous
|
||||
A-F12
|
||||
Take screenshot
|
||||
CA-Return
|
||||
Open terminal (kitty)
|
||||
CAS-r
|
||||
|
|
1
TODO
1
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;
|
||||
|
|
|
@ -9,23 +9,23 @@
|
|||
<titleLayout>LIMC</titleLayout>
|
||||
<font place="ActiveWindow">
|
||||
<name>GohuFont</name>
|
||||
<size>14</size>
|
||||
<size>11</size>
|
||||
</font>
|
||||
<font place="InactiveWindow">
|
||||
<name>GohuFont</name>
|
||||
<size>14</size>
|
||||
<size>11</size>
|
||||
</font>
|
||||
<font place="MenuHeader">
|
||||
<name>GohuFont</name>
|
||||
<size>14</size>
|
||||
<size>11</size>
|
||||
</font>
|
||||
<font place="MenuItem">
|
||||
<name>GohuFont</name>
|
||||
<size>14</size>
|
||||
<size>11</size>
|
||||
</font>
|
||||
<font place="OnScreenDisplay">
|
||||
<name>GohuFont</name>
|
||||
<size>14</size>
|
||||
<size>11</size>
|
||||
</font>
|
||||
</theme>
|
||||
<desktops>
|
||||
|
@ -107,6 +107,11 @@
|
|||
</action>
|
||||
</keybind>
|
||||
|
||||
<keybind key="A-F12">
|
||||
<action name="Execute">
|
||||
<command>flameshot gui</command>
|
||||
</action>
|
||||
</keybind>
|
||||
<keybind key="C-A-Return">
|
||||
<action name="Execute">
|
||||
<command>kitty</command>
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 = "<label-volume>";
|
||||
format-muted = "<label-muted>";
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue