Merge branch 'main' of ssh://git.pogmom.me:10022/pogmommy/dotfiles

This commit is contained in:
Penelope Gwen 2025-10-22 15:42:59 -07:00
commit 86606b4106
9 changed files with 36 additions and 15 deletions

View file

@ -1,5 +1,5 @@
[Settings]
gtk-theme-name=Adwaita-dark
gtk-theme-name=pogmom-gtk
gtk-icon-theme-name=breeze-dark
gtk-font-name=Overpass Nerd Font Propo 10
gtk-cursor-theme-name=Adwaita
@ -14,4 +14,4 @@ gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle=hintslight
gtk-xft-rgba=rgb
gtk-application-prefer-dark-theme=1
gtk-application-prefer-dark-theme=0

View file

@ -169,7 +169,7 @@ SetEditor=false
[MainWindow]
1920x1200 screen: Height=552
1920x1200 screen: Width=1896
1920x1200 screen: Width=580
2 screens: Height=1119
2 screens: Width=490
2048x1280 screen: Height=1199

View file

@ -16,7 +16,7 @@ ShowDeleteCommand=false
[KFileDialog Settings]
Allow Expansion=false
Automatically select filename extension=true
Breadcrumb Navigation=true
Breadcrumb Navigation=false
Decoration position=2
LocationCombo Completionmode=5
PathCombo Completionmode=5

View file

@ -52,14 +52,21 @@ window {
border: 0px solid transparent;
border-radius: 10px;
background-color: var(--button-background-color);
background-color: red;
margin:10px;
padding: 10px;
}
#entry:selected{
background-color: var(--button-background-active-color);
background-color:
}
/*#entry:selected {
background-color: red;
border-radius: 10px;
// opacity: 0;
// background-color: var(--button-background-active-color);
outline: none;
color: red;
}
}*/
#entry:hover {
background-color: var(--button-background-active-color);
outline: none;
@ -100,9 +107,9 @@ list {
font-weight: bold;
margin-left: 15px;
}
#text:selected {
/*#text:selected {
color: var(--active-foreground-color);
}
}*/
#img {
opacity: 0.6;
@ -110,3 +117,8 @@ list {
#img:selected {
opacity: 1;
}
/*
#entry:selected {
border-radius: 5px;
background-color: red;
}*/

View file

@ -1 +1,2 @@
user_pref("privacy.resistFingerprinting.exemptedDomains", "*.pogmom.me,*.pog.mom");
user_pref("privacy.resistFingerprinting.exemptedDomains", "*.pogmom.me,*.pog.mom,*.eugenesca.com,*.wedontownit.duckdns.org");
user_pref("privacy.resistFingerprinting.letterboxing", true);

View file

@ -1 +1,2 @@
user_pref("privacy.resistFingerprinting.exemptedDomains", "*.pogmom.me,*.pog.mom,mail.proton.me");
user_pref("privacy.resistFingerprinting.letterboxing", true);

View file

@ -17,7 +17,7 @@ Name=Penelope
IsRelative=1
Path=penelope
Default=1
StoreID=0585997e
StoreID=bf331188
ShowSelector=0
[General]

View file

@ -0,0 +1,3 @@
{
"chat.disableAIFeatures": true
}

View file

@ -1,18 +1,22 @@
@import url("../colors.css");
/* GTK NAMED COLORS
----------------
use responsibly! */
/*
widget text/foreground color */
@define-color theme_fg_color_breeze #fcfcfc;
/*@define-color theme_fg_color_breeze #fcfcfc;*/
@define-color theme_fg_color_breeze alpha(@color15, 1);
/*
text color for entries, views and content in general */
@define-color theme_text_color_breeze #fcfcfc;
@define-color theme_text_color_breeze alpha(@color15, 1);
/*
widget base background color */
@define-color theme_bg_color_breeze #20232633;
/*@define-color theme_bg_color_breeze #20232633;*/
@define-color theme_bg_color_breeze alpha(@color0, 0);
/*
text widgets and the like base background color */
@define-color theme_base_color_breeze #141618;
/*@define-color theme_base_color_breeze #141618;*/
@define-color theme_base_color_breeze alpha(mix(@color0,@color5,0.2),0.65);
/*
view hover decoration color*/
@define-color theme_view_hover_decoration_color_breeze #3daee9;