This commit is contained in:
Chris Cochrun 2025-05-01 15:32:56 -05:00
parent 8576abd055
commit 370aa9615d
5 changed files with 12 additions and 7 deletions

View file

@ -318,7 +318,7 @@ tooltip label {
color: $base03; color: $base03;
font-weight: bold; font-weight: bold;
font-size: 14px; font-size: 14px;
margin-left: -15px; // margin-left: -10px;
margin-right: 8px; margin-right: 8px;
} }
@ -326,7 +326,7 @@ tooltip label {
color: $base03; color: $base03;
font-weight: bold; font-weight: bold;
font-size: 14px; font-size: 14px;
margin-right: 9px; margin-right: 3px;
} }
.works { .works {

View file

@ -292,10 +292,10 @@
(disk) (disk)
(cpu) (cpu)
(mem) (mem)
(volume)
;; {right_modules.width > 1 ? null : (bright)} ;; {right_modules.width > 1 ? null : (bright)}
(bright) (bright)
(bat)) (bat)
(volume))
(label (label
:class "right_sep" :class "right_sep"
:text "|") :text "|")

View file

@ -93,7 +93,7 @@ in {
"text/txt" = "emacsclient.desktop"; "text/txt" = "emacsclient.desktop";
"text/rs" = "emacsclient.desktop"; "text/rs" = "emacsclient.desktop";
"text/plain" = "emacsclient.desktop"; "text/plain" = "emacsclient.desktop";
"application/pdf" = "emacsclient.desktop"; "application/pdf" = "okular.desktop";
"x-scheme-handler/about" = "librewolf.desktop"; "x-scheme-handler/about" = "librewolf.desktop";
"x-scheme-handler/unknown" = "librewolf.desktop"; "x-scheme-handler/unknown" = "librewolf.desktop";
"x-scheme-handler/magnet" = "torrent.desktop"; "x-scheme-handler/magnet" = "torrent.desktop";
@ -132,7 +132,7 @@ in {
"text/txt" = "emacsclient.desktop"; "text/txt" = "emacsclient.desktop";
"text/rs" = "emacsclient.desktop"; "text/rs" = "emacsclient.desktop";
"text/plain" = "emacsclient.desktop"; "text/plain" = "emacsclient.desktop";
"application/pdf" = "emacsclient.desktop"; "application/pdf" = "okular.desktop";
"x-scheme-handler/about" = "librewolf.desktop"; "x-scheme-handler/about" = "librewolf.desktop";
"x-scheme-handler/unknown" = "librewolf.desktop"; "x-scheme-handler/unknown" = "librewolf.desktop";
"x-scheme-handler/magnet" = "torrent.desktop"; "x-scheme-handler/magnet" = "torrent.desktop";

View file

@ -22,6 +22,7 @@
kdePackages.breeze kdePackages.breeze
kdePackages.dolphin kdePackages.dolphin
geticons geticons
pdfmixtool
# kdePackages.kio-fuse # kdePackages.kio-fuse
# kdePackages.kio-extras # kdePackages.kio-extras
# kdePackages.qtsvg # kdePackages.qtsvg

View file

@ -1,3 +1,7 @@
#!/usr/bin/env nu #!/usr/bin/env nu
if (hyprctl clients -j | from json | where initialTitle == LibreWolf | is-not-empty) { hyprctl dispatch focuswindow "initialtitle:LibreWolf" } else { librewolf --name "lw" } if (hyprctl clients -j | from json | where initialTitle == LibreWolf | is-not-empty) {
hyprctl dispatch focuswindow "initialtitle:LibreWolf"
} else {
librewolf --name "lw"
}