Update: Added Xresources, picom config, screenshot script, powermenu script.

This commit is contained in:
Keyitdev
2025-07-28 19:05:44 +02:00
parent 17c8a55bbb
commit beb1d80f7b
8 changed files with 370 additions and 23 deletions
+84
View File
@@ -0,0 +1,84 @@
[global]
monitor = 0
follow = none
width = 300
height = (0, 300)
origin = top-right
offset = (10, 50)
scale = 0
notification_limit = 20
progress_bar = true
progress_bar_height = 10
progress_bar_frame_width = 1
progress_bar_min_width = 150
progress_bar_max_width = 300
progress_bar_corner_radius = 0
progress_bar_corners = all
icon_corner_radius = 0
icon_corners = all
indicate_hidden = yes
transparency = 0
separator_height = 2
padding = 8
horizontal_padding = 8
text_icon_padding = 0
frame_width = 3
frame_color = "#aaaaaa"
gap_size = 0
separator_color = frame
sort = yes
font = Monospace 8
line_height = 0
markup = full
format = "<b>%s</b>\n%b"
alignment = left
vertical_alignment = center
show_age_threshold = 60
ellipsize = middle
ignore_newline = no
stack_duplicates = true
hide_duplicate_count = false
show_indicators = yes
enable_recursive_icon_lookup = true
icon_theme = Adwaita
icon_position = left
min_icon_size = 32
max_icon_size = 128
# icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
sticky_history = yes
history_length = 20
dmenu = /usr/bin/dmenu -p dunst:
browser = /usr/bin/xdg-open
always_run_script = true
title = Dunst
class = Dunst
corner_radius = 0
corners = all
ignore_dbusclose = false
force_xwayland = false
force_xinerama = false
mouse_left_click = close_current
mouse_middle_click = do_action, close_current
mouse_right_click = close_all
[experimental]
per_monitor_dpi = false
[urgency_low]
background = "#222222"
foreground = "#888888"
timeout = 10
default_icon = dialog-information
[urgency_normal]
background = "#285577"
foreground = "#ffffff"
timeout = 10
override_pause_level = 30
default_icon = dialog-information
[urgency_critical]
background = "#900000"
foreground = "#ffffff"
frame_color = "#ff0000"
timeout = 0
override_pause_level = 60
default_icon = dialog-warning
+20 -6
View File
@@ -8,11 +8,12 @@ tiling_drag modifier titlebar
font pango:Open sans 11
exec --no-startup-id dex --autostart --environment i3
exec --no-startup-id xss-lock --transfer-sleep-lock -- lock --nofork
exec --no-startup-id xrandr --dpi 96
exec_always --no-startup-id xrandr --dpi 96
exec_always --no-startup-id feh --no-fehbg --bg-fill $HOME/Pictures/wallpapers/background.png
exec_always --no-startup-id feh --no-fehbg --bg-fill $HOME/Pictures/wallpapers/rick.png
exec_always --no-startup-id $HOME/.config/polybar/launch.sh
exec_always --no-startup-id picom &
exec_always --no-startup-id dunst &
exec_always --no-startup-id /usr/lib/mate-polkit/polkit-mate-authentication-agent-1 &
exec_always --no-startup-id asus_fan_listener &
@@ -30,11 +31,24 @@ bindsym XF86TouchpadToggle exec --no-startup-id touchpad_toggle
# bindsym XF86RFKill
# bindsym XF86Calculator exec --no-startup-id nemo
bindsym Pause exec screenshot -sa
bindsym Print exec screenshot -sf
bindsym $mod+Return exec i3-sensible-terminal
# kill focused window
bindsym $mod+Shift+q kill
bindsym $mod+d exec --no-startup-id rofi -show drun
bindsym $mod+a exec --no-startup-id rofi -show drun -no-default-config -config ~/.config/rofi/1.rasi
bindsym $mod+d exec --no-startup-id rofi -show drun -no-default-config -config ~/.config/rofi/2.rasi
bindsym $mod+w exec --no-startup-id nemo ~/Pictures/screenshots/
bindsym $mod+e exec --no-startup-id nemo
bindsym $mod+q exec --no-startup-id firefox-developer-edition
bindsym $mod+x exec --no-startup-id rofi-powermenu
bindsym $mod+c exec --no-startup-id rofi-screenshot
# bindsym $mod+d exec --no-startup-id dmenu_run
# change focus
@@ -71,9 +85,9 @@ bindsym $mod+v split v
bindsym $mod+f fullscreen toggle
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# bindsym $mod+s layout stacking
# bindsym $mod+w layout tabbed
# bindsym $mod+e layout toggle split
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
+22
View File
@@ -0,0 +1,22 @@
# Documentation: https://github.com/yshui/picom/wiki
# Config created by Keyitdev https://www.github.com/keyitdev/dotfiles
# Copyright (C) 2022 Keyitdev
fading = true;
fade-in-step = 0.015;
fade-out-step = 0.1;
fade-delta = 5
experimental-backends = false;
backend = "glx";
vsync = false
refresh-rate = 0
detect-transient = true
log-level = "debug";
opacity-rule: [
"95:class_g = 'Org.gnome.Nautilus'"
];
+14 -14
View File
@@ -1,17 +1,17 @@
[color]
background = #1b1b25
foreground = #dedede
transparent = #0000003f
sep = #F8F8F2
background = ${xrdb:background}
foreground = ${xrdb:foreground}
transparent = ${xrdb:transparent}
sep = ${xrdb:sep}
white = #eeffff
black = #15121c
red = #cb5760
green = #999f63
yellow = #d4a067
blue = #6c90a8
purple = #776690
cyan = #528a9b
pink = #ffa8c5
orange = #c87c3e
white = ${xrdb:white}
black = ${xrdb:black}
red = ${xrdb:red}
green = ${xrdb:green}
yellow = ${xrdb:yellow}
blue = ${xrdb:blue}
purple = ${xrdb:purple}
cyan = ${xrdb:cyan}
pink = ${xrdb:pink}
orange = ${xrdb:orange}