Skip to content

Commit

Permalink
Fix color palette and add some other configs
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshayrohila committed Jan 27, 2024
1 parent c6e777c commit 0f1fe96
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions woof-code/rootfs-petbuilds/lxterminal/colors.patch
Original file line number Diff line number Diff line change
@@ -1,18 +1,39 @@
diff -rup lxterminal-0.4.0-orig/data/lxterminal.conf lxterminal-0.4.0/data/lxterminal.conf
--- lxterminal-0.4.0-orig/data/lxterminal.conf 2024-01-27 16:42:04.048250277 +0530
+++ lxterminal-0.4.0/data/lxterminal.conf 2024-01-28 03:03:44.136433337 +0530
@@ -2,3 +2,6 @@
fontname=Monospace 10
selchars=-A-Za-z0-9,./?%&#:_
scrollback=1000
+bgcolor=rgb(36,31,49)
+fgcolor=rgb(222,221,218)
+boldbright=true
diff -rup lxterminal-0.4.0-orig/data/lxterminal.conf.in lxterminal-0.4.0/data/lxterminal.conf.in
--- lxterminal-0.4.0-orig/data/lxterminal.conf.in 2024-01-27 16:42:04.048250277 +0530
+++ lxterminal-0.4.0/data/lxterminal.conf.in 2024-01-28 03:05:37.924989756 +0530
@@ -2,3 +2,6 @@
fontname=Monospace 10
selchars=-A-Za-z0-9,./?%&#:_
scrollback=1000
+bgcolor=rgb(36,31,49)
+fgcolor=rgb(222,221,218)
+boldbright=true
diff -rup lxterminal-0.4.0-orig/src/setting.c lxterminal-0.4.0/src/setting.c
--- lxterminal-0.4.0-orig/src/setting.c 2024-01-27 16:42:04.040251209 +0530
+++ lxterminal-0.4.0/src/setting.c 2024-01-27 17:15:16.041523334 +0530
@@ -37,6 +37,17 @@ Setting * setting;
+++ lxterminal-0.4.0/src/setting.c 2024-01-28 03:18:46.139740603 +0530
@@ -37,6 +37,18 @@ Setting * setting;

ColorPreset color_presets[] = {
{
+ // add Puppy preset here; other modified settings in ../data/lxterminal.conf
+ .name = "Puppy",
+ .background_color = "#241f31",
+ .foreground_color = "#f8f8f8",
+ .foreground_color = "#deddda",
+ .palette = {
+ "#000000", "#ff0000", "#26a269", "#986a44",
+ "#1a5fb4", "#aa00aa", "#00aaaa", "#aaaaaa",
+ "#3d3846", "#ff5454", "#33d17a", "#f6d32d",
+ "#62a0ea", "#ff55ff", "#55ffff", "#ffffff"
+ "#000000", "#ff0000","#2ec27e", "#ff7600",
+ "#1c71d8", "#c061cb", "#00aaaa", "#deddda",
+ "#797979", "#ff5f5f", "#57e389", "#f6d32d",
+ "#62a0ea", "#ff55ff", "#55ffff", "#f6f5f4"
+ }
+ },
+ {
Expand Down

0 comments on commit 0f1fe96

Please sign in to comment.