Skip to content

Commit

Permalink
update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
centaurialpha committed Nov 9, 2024
1 parent 10dabc7 commit 675edaa
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .config/picom/picom.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ vsync = true;

# Opacity
opacity-rule = [
"96:class_g = 'st' && focused",
"90:class_g = 'st' && focused",
"60:class_g = 'st' && !focused"
];

Expand Down
4 changes: 2 additions & 2 deletions .config/qtile/autostart.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

feh --bg-fill ~/Pictures/wallpapers/wallpaper.jpg &
feh --bg-fill ~/.local/share/wallpapers/current.png &
picom &
dunst -config ~/.config/dunst/dunstrc &
# dunst -config ~/.config/dunst/dunstrc &
26 changes: 13 additions & 13 deletions .config/qtile/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from libqtile.lazy import lazy
from widgets import widgets

mod = "mod4" # mod1=Alt;mod2=;mod3=;mod4=super
mod = "mod1" # mod1=Alt;mod2=;mod3=;mod4=super
terminal = "st" # Suckless st

keys = [
Expand Down Expand Up @@ -68,23 +68,23 @@
# Split = all windows displayed
# Unsplit = 1 window displayed, like Max layout, but still with
# multiple stack panes
Key(
[mod, "shift"],
"Return",
lazy.layout.toggle_split(),
desc="Toggle between split and unsplit sides of stack",
),
Key([mod], "Return", lazy.spawn(terminal), desc="Launch terminal"),
# Key(
# [mod, "shift"],
# "Return",
# lazy.layout.toggle_split(),
# desc="Toggle between split and unsplit sides of stack",
# ),
Key([mod, "shift"], "Return", lazy.spawn(terminal), desc="Launch terminal"),
# Toggle between different layouts as defined below
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
Key([mod], "w", lazy.window.kill(), desc="Kill focused window"),
Key([mod, "shift"], "c", lazy.window.kill(), desc="Kill focused window"),
Key([mod, "control"], "r", lazy.restart(), desc="Restart Qtile"),
Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"),
Key([mod], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"),
# Key([mod], "d", lazy.spawn("dmenu_run -c -l 10 -bw 2")),
Key(
[mod],
"d",
"p",
lazy.spawn("rofi -i -show drun -modi drun -show-icons -display-drun ''"),
),
Key(
Expand Down Expand Up @@ -129,7 +129,7 @@
"border_focus": "#957FB8",
"border_normal": "#717C7C",
"border_width": 2,
"margin": 2,
"margin": 5,
}
layouts = [
layout.Stack(**LAYOUT_KWARGS, num_stacks=1),
Expand All @@ -149,14 +149,14 @@
]

widget_defaults = dict(
font="Hermit",
font="IBM Plex Mono Text",
fontsize=15,
padding=2,
)
extension_defaults = widget_defaults.copy()

all_widgets = widgets.copy()
top_primary = bar.Bar(all_widgets, 30, background="#1a1b26")
top_primary = bar.Bar(all_widgets, 30, background="#121212")
screens = [Screen(top=top_primary)]

# Drag floating layouts.
Expand Down
1 change: 1 addition & 0 deletions .local/share/wallpapers/current.png
3 changes: 2 additions & 1 deletion .xinitrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/bin/bash
exec ~/.local/bin/startdwm
# exec ~/.local/bin/startdwm
exec qtile start

0 comments on commit 675edaa

Please sign in to comment.