Skip to content

Commit 959d9eb

Browse files
author
dotfiles-bot
committed
upd
1 parent 2e8a8ce commit 959d9eb

6 files changed

Lines changed: 146 additions & 7 deletions

File tree

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ kateconfig text eol=lf
4040
.xcolors/* text eol=lf
4141
pop-zram text eol=lf
4242
*.py text eol=lf
43+
*.* text eol=lf
4344

4445
# Archivos binarios (imágenes, fuentes/audio/archivos)
4546
*.png binary

install-mappings.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ user.js|firefox: ignore # modules/browsers/firefox
104104
.xinitrc|wm: ignore # Window manager .xinitrc (manual setup)
105105
.Xdefaults|wm: ignore # X11 defaults (deprecated, use .Xresources)
106106

107+
# Desktop Environment
108+
picom.conf|picom: xdg:picom/picom.conf # modules/desktop/de/picom
109+
dunstrc|dunst: xdg:dunst/dunstrc # modules/desktop/de/dunst
110+
111+
# File Managers
112+
pcmanfm.conf|pcmanfm: xdg:pcmanfm/default/pcmanfm.conf # modules/desktop/file-manager/pcmanfm
113+
114+
# ===== SHELL =====
107115
# Window Managers - Windows 95/98 Style
108116
preferences|icewm: xdg:icewm/preferences # modules/desktop/wm/icewm
109117
.xinitrc|icewm: ignore # modules/desktop/wm/icewm
@@ -116,6 +124,7 @@ hyprland.conf|hyprland: xdg:hypr/hyprland.conf # modules/desktop/wm/hyprla
116124
rc.xml|labwc: xdg:labwc/rc.xml # modules/desktop/wm/labwc (Wayland)
117125
themerc|labwc: xdg:labwc/themerc # modules/desktop/wm/labwc
118126
autostart|labwc: xdg:labwc/autostart # modules/desktop/wm/labwc
127+
menu.xml|labwc: xdg:labwc/menu.xml # modules/desktop/wm/labwc
119128

120129
# Waybar (Wayland status bar)
121130
config.jsonc|waybar: xdg:waybar/config.jsonc # modules/desktop/wm/waybar
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[config]
2+
# PCManFM Configuration - Windows 95/98 Style
3+
# Path: ~/.config/pcmanfm/default/pcmanfm.conf
4+
5+
bm_open_method=0
6+
7+
[volume]
8+
mount_on_startup=1
9+
mount_removable=1
10+
autorun=1
11+
12+
[ui]
13+
always_show_tabs=0
14+
max_tab_chars=32
15+
win_width=800
16+
win_height=600
17+
splitter_pos=150
18+
media_in_new_tab=0
19+
desktop_folder_new_win=0
20+
change_tab_on_drop=1
21+
close_on_unmount=1
22+
focus_previous=0
23+
side_pane_mode=places
24+
view_mode=icon
25+
show_hidden=0
26+
sort=name;ascending;
27+
toolbar=newtab;navigation;home;
28+
show_statusbar=1
29+
pathbar_mode_buttons=0
30+
31+
[thumbnail]
32+
show_thumbnail=1
33+
thumbnail_size=128
34+
thumbnail_max=2048

modules/desktop/wm/labwc/menu.xml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0"?>
2+
<!-- labwc menu - Windows 95/98 Style -->
3+
<!-- Path: ~/.config/labwc/menu.xml -->
4+
5+
<openbox_menu>
6+
7+
<!-- Root menu (Desktop right-click) -->
8+
<menu id="root-menu" label="Desktop">
9+
10+
<item label="Terminal">
11+
<action name="Execute">
12+
<command>alacritty</command>
13+
</action>
14+
</item>
15+
16+
<item label="File Manager">
17+
<action name="Execute">
18+
<command>pcmanfm</command>
19+
</action>
20+
</item>
21+
22+
<separator />
23+
24+
<item label="Web Browser">
25+
<action name="Execute">
26+
<command>chromium</command>
27+
</action>
28+
</item>
29+
30+
<item label="Text Editor">
31+
<action name="Execute">
32+
<command>xed</command>
33+
</action>
34+
</item>
35+
36+
<separator />
37+
38+
<item label="Run...">
39+
<action name="Execute">
40+
<command>dmenu_run -fn 'Sans-9' -nb '#C0C0C0' -nf '#000000' -sb '#000080' -sf '#FFFFFF'</command>
41+
</action>
42+
</item>
43+
44+
<separator />
45+
46+
<item label="Reconfigure">
47+
<action name="Reconfigure" />
48+
</item>
49+
50+
<item label="Exit">
51+
<action name="Exit" />
52+
</item>
53+
54+
</menu>
55+
56+
<!-- Client menu (Window right-click on title bar) -->
57+
<menu id="client-menu" label="Window">
58+
59+
<item label="Minimize">
60+
<action name="Iconify" />
61+
</item>
62+
63+
<item label="Maximize">
64+
<action name="ToggleMaximize" />
65+
</item>
66+
67+
<item label="Fullscreen">
68+
<action name="ToggleFullscreen" />
69+
</item>
70+
71+
<separator />
72+
73+
<item label="Move">
74+
<action name="Move" />
75+
</item>
76+
77+
<item label="Resize">
78+
<action name="Resize" />
79+
</item>
80+
81+
<separator />
82+
83+
<item label="Always on Top">
84+
<action name="ToggleAlwaysOnTop" />
85+
</item>
86+
87+
<separator />
88+
89+
<item label="Close">
90+
<action name="Close" />
91+
</item>
92+
93+
</menu>
94+
95+
</openbox_menu>

modules/desktop/wm/labwc/themerc

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Path: ~/.config/labwc/themerc
33

44
# ===== WINDOW BORDERS =====
5+
# Border width
56
border.width: 2
6-
border.color: #000000
77

88
# ===== TITLE BAR =====
99
window.active.title.bg.color: #000080
@@ -36,9 +36,12 @@ window.inactive.button.unpressed.bg.color: #C0C0C0
3636
window.inactive.button.hover.bg.color: #DFDFDF
3737

3838
# ===== WINDOW DECORATIONS =====
39-
# 3D beveled effect for window borders
40-
window.active.border.color: #FFFFFF
41-
window.inactive.border.color: #808080
39+
# 3D beveled effect for window borders (Windows 95 style)
40+
# Active window: white highlight on top/left, dark shadow on bottom/right
41+
window.active.border.color: #000000
42+
43+
# Inactive window: same border style
44+
window.inactive.border.color: #000000
4245

4346
# Handle (resize grip)
4447
window.active.handle.bg.color: #C0C0C0

modules/term/alacritty/alacritty.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ style = "Bold Italic"
4949
# Offset
5050
offset = { x = 0, y = 0 }
5151

52-
# Glyph offset
53-
glyph_offset = { x = 0, y = 0 }
54-
5552
# ===== COLORES (Monokai) =====
5653
[colors.primary]
5754
background = "#272822"

0 commit comments

Comments
 (0)