all repos

dotfiles @ 8511aa41303c76ec3725b5bae63090a29e0a60b5

my dotfiles

config/openbox/menu.xml (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="apps-editors-menu" label="Editors">
  <item label="VScode">
    <action name="Execute">
      <command>code</command>
    </action>
  </item>
  <item label="Neovim">
    <action name="Execute">
      <command>kitty -e nvim</command>
      <startupnotify>
        <enabled>yes</enabled>
        <wmclass>nvim</wmclass>
      </startupnotify>
    </action>
  </item>
</menu>

<menu id="apps-term-menu" label="Terminals">
  <item label="Alacritty">
    <action name="Execute">
      <command>alacritty</command>
    </action>
  </item>
  <item label="Kitty">
    <action name="Execute">
      <command>kitty</command>
    </action>
  </item>
</menu>

<menu id="apps-net-menu" label="Internet">
  <item label="Firefox">
    <action name="Execute">
      <command>firefox</command>
    </action>
  </item>
  <item label="Google chrome">
    <action name="Execute">
      <command>google-chrome-stable</command>
    </action>
  </item>
  <item label="Discord">
    <action name="Execute">
      <command>discord</command>
    </action>
  </item>
  <item label="Telegram">
    <action name="Execute">
      <command>telegram-desktop</command>
    </action>
  </item>
  <item label="Dropbox">
    <action name="Execute">
      <command>dropbox</command>
    </action>
  </item>
</menu>

<menu id="apps-office-menu" label="Productivity">
  <item label="Simplenote">
    <action name="Execute">
      <command>~/.applications/simplenote.appimage</command>
    </action>
  </item>
  <item label="Joplin">
    <action name="Execute">
      <command>~/.applications/joplin.appimage</command>
    </action>
  </item>
  <item label="Todoist">
    <action name="Execute">
      <command>~/.applications/todoist.appimage</command>
    </action>
  </item>
  <item label="Zathura">
    <action name="Execute">
      <command>zathura</command>
    </action>
  </item>
</menu>

<menu id="apps-fileman-menu" label="File Managers">
  <item label="Ranger">
    <action name="Execute">
      <command>kitty -e ranger</command>
    </action>
  </item>
  <item label="Thunar">
    <action name="Execute">
      <command>Thunar</command>
    </action>
  </item>
</menu>

<menu id="system-menu" label="System">
  <item label="OBconf ">
    <action name="Execute">
      <command>obconf</command>
    </action>
  </item>
  <item label="LXapperance">
    <action name="Execute">
      <command>lxapperance</command>
    </action>
  </item>
  <item label="Tint2 config">
    <action name="Execute">
      <command>tint2conf</command>
    </action>
  </item>
  <separator />
  <item label="Reconfigure Openbox">
    <action name="Reconfigure" />
  </item>
</menu>

<menu id="power-menu" label="Power">
  <item label="Power Off">
      <action name="poweroff"><prompt>yes</prompt></action>
  </item>
  <item label="Reboot">
    <action name="reboot"><prompt>yes</prompt></action>
  </item>
  <item label="Log Out">
    <action name="Exit"><prompt>yes</prompt></action>
  </item>
</menu>

<menu id="root-menu" label="Openbox">
  <item label="Terminal">
    <action name="Execute">
      <command>kitty</command>
    </action>
  </item>
  <item label="Browser">
    <action name="Execute">
      <command>google-chrome-stable</command>
    </action>
  </item>
  <item label="Rofi">
    <action name="Execute">
      <command>rofi -show drun -theme ntenV2</command>
    </action>
  </item>
  <separator label="Categories" />
  <menu id="apps-net-menu"/>
  <menu id="apps-editors-menu"/>
  <menu id="apps-term-menu"/>
  <menu id="apps-office-menu"/>
  <menu id="apps-fileman-menu"/>
  <separator label="System" />
  <menu id="system-menu" />
  <menu id="power-menu" />
</menu>
</openbox_menu>