Skip to content

Commit

Permalink
Update colorschme, remove useless picom configurations.
Browse files Browse the repository at this point in the history
  • Loading branch information
thebashpotato committed Jun 8, 2024
1 parent 66f5f69 commit 13891c0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 18 deletions.
28 changes: 13 additions & 15 deletions install-files/picom/picom.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# unless explicitly requested using the wintypes option.
#
# shadow = false
shadow = true;
shadow = false;

# The blur radius for shadows, in pixels. (defaults to 12)
# shadow-radius = 12
Expand Down Expand Up @@ -104,12 +104,10 @@ fade-out-step = 0.04;


# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
# inactive-opacity = 1
inactive-opacity = 0.8;
# inactive-opacity = 1.0

# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
# frame-opacity = 1.0
frame-opacity = 1.0;

# Let inactive opacity set by -i override the '_NET_WM_WINDOW_OPACITY' values of windows.
# inactive-opacity-override = true
Expand Down Expand Up @@ -158,13 +156,13 @@ rounded-corners-exclude = [
# Background-Blurring #
#################################

blur:
{
method = "kernel";
size = 12;
deviation = 10.0;
strength = 10;
};
# blur:
# {
# method = "kernel";
# size = 12;
# deviation = 10.0;
# strength = 10;
# };

# Parameters for background blurring, see the *BLUR* section for more information.
# blur-method =
Expand Down Expand Up @@ -327,7 +325,7 @@ glx-no-rebind-pixmap = true
# The opposing option is use-damage
#
# no-use-damage = false
use-damage = true;
use-damage = true

# Use X Sync fence to sync clients' draw calls, to make sure all draw
# calls are finished before picom starts drawing. Needed on nvidia-drivers
Expand Down Expand Up @@ -434,10 +432,10 @@ log-level = "warn";
#
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; full-shadow = false; };
dock = { shadow = false; clip-shadow-above = true; }
dnd = { shadow = false; }
popup_menu = { opacity = 0.8; }
dropdown_menu = { opacity = 0.8; }
popup_menu = { opacity = 0.9; }
dropdown_menu = { opacity = 0.9; }
};

6 changes: 3 additions & 3 deletions swm/src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ const int32_t G_SHOW_BAR = 1;
const int32_t G_TOP_BAR = 1;
const char G_USER_FONT[] = "NotoSansM NFM:size=17:style=Bold";
const char G_DMENU_FONT[] = "NotoSansM NFM:size=18:style=Bold";
const char G_COLORSCHEME_BACKGROUND[] = "#131313";
const char G_COLORSCHEME_BACKGROUND[] = "#1a1b26";
const char G_COLORSCHEME_BORDER[] = "#393939";
const char G_COLORSCHEME_FOREGROUND[] = "#dde1e6";
const char G_COLORSCHEME_SECONDARY[] = "#262626";
const char G_COLORSCHEME_PRIMARY[] = "#78a9ff";
const char G_COLORSCHEME_SECONDARY[] = "#24283b";
const char G_COLORSCHEME_PRIMARY[] = "#7aa2f7";
const float G_MASTER_FACTOR = 0.55;
const int32_t G_MASTER_COUNT = 1;
const int32_t G_RESIZE_HINTS = 1;
Expand Down
1 change: 1 addition & 0 deletions swm/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ int main(int argc, char **argv)
Autostart__add(&as, "xset r rate 200 60");
Autostart__add(&as, "setxkbmap -option ctrl:nocaps");
Autostart__add(&as, "picom");
Autostart__add(&as, "dunst");
Autostart__add(&as, "slacker_update_bar.sh");
Autostart__add(
&as,
Expand Down

0 comments on commit 13891c0

Please sign in to comment.