mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
started working on the librewolf config
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{ writeShellApplication, zsh, kitty, fzf,... }:
|
||||
|
||||
writeShellApplication {
|
||||
name = "custom-librewolfprofiles";
|
||||
runtimeInputs = [
|
||||
zsh
|
||||
fzf
|
||||
];
|
||||
text = ''
|
||||
# List of profiles
|
||||
profiles=("work" "other")
|
||||
|
||||
# Use fzf to select
|
||||
selected=$(printf "%s\n" "''${profiles[@]}" | fzf --height 6 --reverse --prompt="Select LibreWolf profile:")
|
||||
|
||||
# If user cancels, exit
|
||||
[[ -z "$selected" ]] && exit 0
|
||||
|
||||
# Launch LibreWolf detached, keeping environment
|
||||
setsid librewolf -P "$selected" --no-remote >/dev/null 2>&1 &
|
||||
pkill -f "kitty.*Select LibreWolf profile"
|
||||
|
||||
|
||||
# Exit the kitty terminal after selection
|
||||
exit
|
||||
'';
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
[76518, Main Thread] WARNING: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name: 'glib warning', file /build/firefox-147.0.4/toolkit/xre/nsSigHandlers.cpp:201
|
||||
|
||||
(librewolf:76518): Gtk-WARNING **: 13:51:55.317: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name
|
||||
[Parent 76518, Main Thread] WARNING: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name: 'glib warning', file /build/firefox-147.0.4/toolkit/xre/nsSigHandlers.cpp:201
|
||||
|
||||
(librewolf:76518): Gtk-WARNING **: 13:51:55.420: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name
|
||||
[Parent 76518, Main Thread] WARNING: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name: 'glib warning', file /build/firefox-147.0.4/toolkit/xre/nsSigHandlers.cpp:201
|
||||
|
||||
(librewolf:76518): Gtk-WARNING **: 13:51:55.455: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name
|
||||
[77025, Main Thread] WARNING: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name: 'glib warning', file /build/firefox-147.0.4/toolkit/xre/nsSigHandlers.cpp:201
|
||||
|
||||
(librewolf:77025): Gtk-WARNING **: 13:52:10.941: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name
|
||||
[Parent 77025, Main Thread] WARNING: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name: 'glib warning', file /build/firefox-147.0.4/toolkit/xre/nsSigHandlers.cpp:201
|
||||
|
||||
(librewolf:77025): Gtk-WARNING **: 13:52:11.043: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name
|
||||
[Parent 77025, Main Thread] WARNING: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name: 'glib warning', file /build/firefox-147.0.4/toolkit/xre/nsSigHandlers.cpp:201
|
||||
|
||||
(librewolf:77025): Gtk-WARNING **: 13:52:11.078: Theme parsing error: gtk.css:1048:16: 'border-spacing' is not a valid property name
|
||||
Reference in New Issue
Block a user