Posts

Showing posts from September, 2024

~/.config/compton/compton.conf

  # Enable fading for opening and closing windows fading = true; fade-in-step = 0.03; fade-out-step = 0.03; # Enable transparency for inactive windows inactive-opacity = 0.8; # Adjust to preferred transparency level active-opacity = 1.0; frame-opacity = 0.8; # Set transparency for specific applications like GNOME Terminal opacity-rule = [ "90:class_g = 'Gnome-terminal'" ];

~/.config/rofi/theme.rasi

  // Global theme settings for overall dark appearance * { background-color: #000000; // Dark background color for all elements color: #ccffff; // Light text color // border: 1px; // Border thickness border-color: #31324400; // Darker border color border-radius: 25px; // Rounded corners padding: 2px; // Padding around elements spacing: 2px; // Spacing between items } // Set dark background specifically for the main Rofi window window { background: #1e1e2e; // Dark background for the window width: 20%; // Reduced width anchor: center; // Center on screen location: center; // Center vertically as well // border: 1px; // Optional border to define the window border-color: #313244; // Border color matching the theme } // List view settings to control item display and aesthetics...

~/.config/rofi/config.rasi

  configuration { modi: "drun,run,window,ssh"; // Set available modes font: "JetBrains Mono 10"; // Set your preferred font terminal: "gnome-terminal"; // Set your terminal application show-icons: true; // Enable icons } // Link to the theme file @theme "~/.config/rofi/theme.rasi"

~/.config/polybar/config

[colors] background = #282A2E background-alt = #373B41 foreground = #C5C8C6 primary = #F0C674 secondary = #8ABEB7 alert = #A54242 disabled = #707880 [bar/mybar] width = 100% height = 24pt radius = 14 ; dpi = 96 background = #222222 foreground = ${colors.foreground} line-size = 3pt border-size = 3pt border-color = #00000000 padding-left = 0 padding-right = 1 module-margin = 1 separator = | separator-foreground = ${colors.disabled} font-0 = Ubuntu:Bold:size=13;2 modules-left = xworkspaces modules-center = date modules-right = brightness pulseaudio battery cursor-click = pointer cursor-scroll = ns-resize enable-ipc = true ; wm-restack = generic ; wm-restack = bspwm ; wm-restack = i3 ; override-redirect = true ; This module is not active by default (to enable it, add it to one of the ; modules-* list above). ; Please note that only a single tray can exist at any time. If you launch ; multiple bars with this module, only a single one will show it, the others ; will produce a warning. Which ...

~/.config/picom/picom.conf

  ################################# # Backend Settings ################################# # Use the "glx" backend for better performance. backend = "glx"; ################################# # General Settings ################################# # Enable vsync to reduce screen tearing. vsync = true; # Enable fading effects for windows. fading = true; fade-in-step = 0.03; fade-out-step = 0.03; fade-delta = 5; # Shadow settings for windows. shadow = false; shadow-radius = 7; shadow-offset-x = -7; shadow-offset-y = -7; shadow-opacity = 0.7; ################################# # Transparency Settings ################################# # Enable inactive window transparency. inactive-opacity = 0.85; # Set transparency for inactive windows (0-1 range). active-opacity = 1.0; # Set opacity for active windows (1 is fully opaque). frame-opacity = 0.8; # Set frame opacity. # Define opacity rules for specific windows (e.g., terminals). opacity-rule = [ ...

~/.config/i3/config

# This file has been auto-generated by i3-config-wizard(1). # It will not be overwritten, so edit it as you like. # # Should you change your keyboard layout some time, delete # this file and re-run i3-config-wizard(1). # # i3 config file (v4) # # Please see https://i3wm.org/docs/userguide.html for a complete reference! set $mod Mod4 # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. font pango:Ubuntu-Mono 12 # This font is widely installed, provides lots of unicode glyphs, right-to-left # text rendering and scalability on retina/hidpi displays (thanks to pango). #font pango:DejaVu Sans Mono 8 # Start XDG autostart .desktop files using dex. See also # https://wiki.archlinux.org/index.php/XDG_Autostart exec --no-startup-id dex --autostart --environment i3 # The combination of xss-lock, nm-applet and pactl is a popular choice, so # they are included here as an example. Modify as you see fit. # xss-lock grabs a login...