feat: mime types for qutebrowser
This commit is contained in:
parent
b03c70b486
commit
8f8efb90ee
7 changed files with 20 additions and 12 deletions
|
@ -7,7 +7,6 @@
|
||||||
nixosConfigurations = lib.mkHosts {
|
nixosConfigurations = lib.mkHosts {
|
||||||
python = {
|
python = {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
user = "artur";
|
|
||||||
extraModules = [
|
extraModules = [
|
||||||
inputs.disko.nixosModules.disko
|
inputs.disko.nixosModules.disko
|
||||||
];
|
];
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
xdg.mime = {
|
xdg.mime = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = {
|
defaultApplications = {
|
||||||
"text/html" = ["qutebrowser.desktop"];
|
"text/html" = ["org.qutebrowser.qutebrowser.desktop"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
# BEGIN_KITTY_THEME
|
|
||||||
# Tokyo Night
|
|
||||||
include current-theme.conf
|
include current-theme.conf
|
||||||
# END_KITTY_THEME
|
|
||||||
|
|
||||||
# BEGIN_KITTY_FONTS
|
font_family monospace
|
||||||
font_family family='Source Code Pro' postscript_name=SourceCodePro-Regular
|
|
||||||
bold_font auto
|
bold_font auto
|
||||||
italic_font auto
|
italic_font auto
|
||||||
bold_italic_font auto
|
bold_italic_font auto
|
||||||
font_size 14.0
|
font_size 14.0
|
||||||
# END_KITTY_FONTS
|
disable_ligatures always
|
||||||
|
wayland_titlebar_color background
|
||||||
|
|
||||||
|
confirm_os_window_close 0
|
||||||
|
enable_audio_bell no
|
||||||
|
close_on_child_death no
|
||||||
|
|
||||||
window_padding_width 8
|
window_padding_width 8
|
||||||
|
|
|
@ -86,7 +86,7 @@ riverctl border-color-unfocused 0x00000000
|
||||||
riverctl keyboard-layout "us"
|
riverctl keyboard-layout "us"
|
||||||
riverctl set-repeat 50 300
|
riverctl set-repeat 50 300
|
||||||
|
|
||||||
riverctl xcursor-theme "BreezeX-RosePine-Linux"
|
riverctl xcursor-theme "Simp1e-Tokyo-Night"
|
||||||
|
|
||||||
riverctl default-layout rivertile
|
riverctl default-layout rivertile
|
||||||
rivertile -view-padding 10 -outer-padding 10 &
|
rivertile -view-padding 10 -outer-padding 10 &
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
alqueva.fonts = {
|
alqueva.fonts = {
|
||||||
names = {
|
names = {
|
||||||
sansSerif = ["Source Sans Pro"];
|
sansSerif = ["Source Sans Pro"];
|
||||||
monospace = ["Source Code Pro"];
|
monospace = ["Commit Mono"];
|
||||||
serif = ["Source Serif Pro"];
|
serif = ["Source Serif Pro"];
|
||||||
emoji = ["OpenMoji Color"];
|
emoji = ["OpenMoji Color"];
|
||||||
};
|
};
|
||||||
packages = {
|
packages = {
|
||||||
sansSerif = [pkgs.source-sans-pro];
|
sansSerif = [pkgs.source-sans-pro];
|
||||||
monospace = [pkgs.source-code-pro];
|
monospace = [pkgs.commit-mono];
|
||||||
serif = [pkgs.source-serif-pro];
|
serif = [pkgs.source-serif-pro];
|
||||||
emoji = [pkgs.openmoji-color];
|
emoji = [pkgs.openmoji-color];
|
||||||
extra = [
|
extra = [
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
cursor-size = lib.gvariant.mkUint32 24;
|
cursor-size = lib.gvariant.mkUint32 24;
|
||||||
cursor-theme = "Simp1e-Tokyo-Night";
|
cursor-theme = "Simp1e-Tokyo-Night";
|
||||||
icon-theme = "Tela-circle-purple-dark";
|
icon-theme = "Tela-circle-purple-dark";
|
||||||
gtk-theme = "Tokyonight-dark";
|
gtk-theme = "Tokyonight-Dark";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
8
scripts/rbh/src/main.c
Normal file
8
scripts/rbh/src/main.c
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[]) {
|
||||||
|
for (int i = 1; i > argc; i++) {
|
||||||
|
printf("%d: %s", i, argv[i]);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue