summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2020-02-02 16:07:37 +0100
committerMax Christian Pohle2020-02-02 16:07:37 +0100
commit0f5a68c2c6e15216f9357dd80310ee65a1dc6245 (patch)
treed93887b6a1ea6360bf4fd39a006090e7e89b27c9
parent72821c3fa130753100088177a09a730abe39ba6b (diff)
downloadsway-staging.tar.bz2
sway-staging.zip
playing aroundstaging
l---------00-color.conf1
-rw-r--r--01-config.conf400
-rw-r--r--Makefile3
-rw-r--r--config74
-rw-r--r--env1
5 files changed, 460 insertions, 19 deletions
diff --git a/00-color.conf b/00-color.conf
new file mode 120000
index 0000000..35c3701
--- /dev/null
+++ b/00-color.conf
@@ -0,0 +1 @@
/home/max/.config/base16/base16-sway/themes/base16-papercolor-dark.config \ No newline at end of file
diff --git a/01-config.conf b/01-config.conf
new file mode 100644
index 0000000..ae35d65
--- /dev/null
+++ b/01-config.conf
@@ -0,0 +1,400 @@
1# sway configuration file
2# man sway(5)
3
4# ================================================================================
5# output device configuration
6# man sway-output(5)
7# ================================================================================
8# force_xinerama yes
9# fake-outputs 3840x1080+0+0
10
11
12output DP-2 {
13 pos 0 0
14 res 1920x1080
15 background ~/.local/share/backgrounds/01-0.jpg fill
16 dpms on
17}
18
19output DP-1 {
20 pos 1920 0
21 res 1920x1080
22 background ~/.local/share/backgrounds/01-1.jpg fill
23 # transform 270
24 dpms on
25}
26
27# ================================================================================
28# Workspace settings
29# ================================================================================
30workspace 1 output VGA1
31workspace_layout tabbed
32
33# customize workspace names
34set $WS0 0:🄌
35set $WS1 1:➊
36set $WS2 2:➋
37set $WS3 3:➌
38set $WS4 4:➍
39set $WS5 5:➎
40set $WS6 6:➏
41set $WS7 7:➐
42set $WS8 8:➑
43set $WS9 9:➒
44
45workspace $WS0 output XWAYLAND1 HDMI-1 DP-1 VGA-1
46workspace $WS1 output primary
47workspace $WS9 output XWAYLAND1 HDMI-1 DP-1 VGA-1
48
49bindsym Mod4+BackSpace exec i3-msg move workspace to output right
50
51# switch to workspace
52bindsym Mod4+0 workspace $WS0
53bindsym Mod4+1 workspace $WS1
54bindsym Mod4+2 workspace $WS2
55bindsym Mod4+3 workspace $WS3
56bindsym Mod4+4 workspace $WS4
57bindsym Mod4+5 workspace $WS5
58bindsym Mod4+6 workspace $WS6
59bindsym Mod4+7 workspace $WS7
60bindsym Mod4+8 workspace $WS8
61bindsym Mod4+9 workspace $WS9
62
63# move focused container to workspace
64bindsym Mod4+Shift+0 move container to workspace $WS0
65bindsym Mod4+Shift+1 move container to workspace $WS1
66bindsym Mod4+Shift+2 move container to workspace $WS2
67bindsym Mod4+Shift+3 move container to workspace $WS3
68bindsym Mod4+Shift+4 move container to workspace $WS4
69bindsym Mod4+Shift+5 move container to workspace $WS5
70bindsym Mod4+Shift+6 move container to workspace $WS6
71bindsym Mod4+Shift+7 move container to workspace $WS7
72bindsym Mod4+Shift+8 move container to workspace $WS8
73bindsym Mod4+Shift+9 move container to workspace $WS9
74
75# ================================================================================
76# base16 Xressource depenend color configuration
77# with default values from base16-tomorrow-night
78# ================================================================================
79xwayland enable
80hide_edge_borders both
81title_align left
82# gaps inner 6
83# smart_gaps on
84# smart_borders no_gaps
85# focus_follows_mouse no
86# mouse_warping none
87
88# we basically want to configure our font with ~/.config/fontconfig/* and can
89# configure what is called monospace that way. It is more portable that way.
90font pango:monospace 9
91# font pango:GoMono Nerd Font 9
92# font pango:FuraCode Nerd Font Mono 9
93# font pango:Code New Roman Nerd Font 9
94
95# load xrdb
96exec xrdb ~/.Xresources ; swaymsg reload
97
98# include /home/max/.config/base16/base16-sway/themes/base16-tomorrow.config
99# include /home/max/.config/base16/base16-sway/themes/base16-papercolor-light.config
100# main variables ssource default
101# d variable default
102set $background $base00
103set $foreground $base05
104set $cursorColor $foreground
105
106# set_from_resource $foreground base16.cursor $cursorColor
107# set_from_resource $foreground base16.cursor $base05
108
109# Basic bar configuration using the Base16 variables.
110bar {
111 # status_command i3status --config ~/.config/i3/i3status.conf
112 font pango:monospace 9
113 status_command i3status --config ~/.config/i3/i3status.conf
114 # swaybar_command swaybar
115
116 tray_padding 2
117 tray_output DP-1
118 mode dock
119 strip_workspace_numbers yes
120 # separator_symbol "|"
121 separator_symbol " "
122
123 colors {
124 background $background
125 separator $foreground
126 statusline $foreground
127
128 focused_workspace $background $background $base05
129 active_workspace $background $background $cursorColor
130 inactive_workspace $background $background $base03
131 urgent_workspace $background $background $base08
132 binding_mode $background $background $foreground
133 }
134}
135
136# Basic color configuration using the Base16 variables for windows and borders.
137# Property Name Border BG Text Indicator Child Border
138client.focused $base05 $base04 $base00 $base04 $base04
139client.focused_inactive $base05 $base0F $base07 $base03 $base01
140client.unfocused $base05 $base00 $base05 $base01 $base01
141client.urgent $base08 $base08 $base00 $base08 $base08
142client.placeholder $base00 $base00 $base05 $base00 $base00
143client.background $background
144
145
146
147
148# ================================================================================
149# windows assignments and special treatment, e.g. icons
150# ================================================================================
151assign [class="^Pidgin"] $WS0
152assign [class="^Hexchat"] $WS0
153assign [class="(?i)pidgin"] $WS0
154assign [class="^Thunderbird$"] $WS0
155assign [title="(?i)weechat"] $WS0
156# for_window [class="^.*"] border normal 3
157# for_window [title="^.*Thunderbird"] border pixel 0
158# for_window [title="^.*Chromium"] border pixel 0
159# for_window [class="Gvim"] border pixel 0
160for_window [title="(?i)Evolution"] title_format "📧 %title"
161for_window [class="(?i)firefox"] title_format " %title"
162for_window [class="(?i)chromium"] title_format " %title"
163for_window [class="(?i)hexchat"] title_format " %title"
164for_window [class="(?i)pidgin"] title_format "👥 %title"
165for_window [class="(?i)thunar"] title_format "🗄️ %title"
166for_window [class="(?i)keepassx?"] title_format "🔑 %title"
167for_window [class="(?i).*terminal?"] title_format " %title"
168for_window [class="(?i).*termite?"] title_format " %title"
169for_window [class="(?i)xfce4-appfinder"] title_format " %title"
170for_window [class="(?i)thunderbird"] title_format " %title"
171for_window [title="(?i)weechat"] title_format " %title"
172for_window [title="YouTube"] title_format " %title"
173for_window [title=""] title_format "%title"
174for_window [title=" "] title_format "%title"
175
176# for_window [class="(?i)xfce4-terminal"] border pixel 0
177# for_window [class="(?i)xfce4-appfinder"] border pixel 0
178# for_window [title="^.*\|"] border pixel 4
179# for_window [title="^HexChat.*"] border pixel 0
180# for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks
181# for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks
182# for_window [title="cairo-dock"] floating enable ; border none
183# for_window[class="Plank"] floating enable,move absolute center
184# for_window [class=".*"] title_format "┋ %title"
185# for_window [con_id="__focused__"] title_format "<u>%title</u>"
186
187
188
189# ================================================================================
190# Keyboard mappings
191# Mod1 ctrl
192# Mod4 windows key
193# ================================================================================
194
195set $mod Mod4
196bindsym $mod+j "mark --toggle a"
197
198# Use Mouse+$mod to drag floating windows to their wanted position
199floating_modifier $mod
200
201# restart sway or reload config
202bindsym $mod+Shift+c reload
203bindsym $mod+Shift+r restart
204
205# kill focused window
206bindsym $mod+Shift+q kill
207bindsym Mod1+F4 kill
208
209bindsym $mod+F2 exec i3-input -F 'rename workspace to "%s"' -P 'New name: '
210bindsym Control+Mod1+Left workspace prev_on_output
211bindsym Control+Mod1+Right workspace next_on_output
212
213# move focused window
214bindsym $mod+Shift+h move left
215bindsym $mod+Shift+j move down
216bindsym $mod+Shift+k move up
217bindsym $mod+Shift+l move right
218
219
220bindsym $mod+Tab focus output right
221bindsym $mod+Shift+Tab focus output left
222bindsym mod1+Tab focus right
223bindsym mod1+Shift+Tab focus left
224bindsym $mod+Next focus child
225bindsym $mod+Left focus left
226bindsym $mod+Right focus right
227bindsym $mod+Down focus down
228bindsym $mod+Up focus up
229bindsym $mod+Prior focus parent
230bindsym $mod+a focus parent
231
232# alternatively, you can use the cursor keys:
233bindsym $mod+Shift+Left move left ; exec pkill -SIGRTMIN+11 i3blocks
234bindsym $mod+Shift+Down move down ; exec pkill -SIGRTMIN+11 i3blocks
235bindsym $mod+Shift+Up move up ; exec pkill -SIGRTMIN+11 i3blocks
236bindsym $mod+Shift+Right move right ; exec pkill -SIGRTMIN+11 i3blocks
237
238
239# change container layout (stacked, tabbed, toggle split)
240bindsym $mod+s layout stacking
241bindsym $mod+w layout tabbed
242bindsym $mod+q layout toggle split
243bindsym $mod+x layout toggle all
244
245bindsym $mod+v split toggle
246bindsym $mod+space split toggle
247
248# enter fullscreen mode for the focused container
249bindsym $mod+f fullscreen toggle
250bindsym $mod+g fullscreen toggle global
251
252# toggle tiling / floating
253bindsym $mod+Shift+space floating toggle
254bindsym $mod+m move scratchpad
255bindsym $mod+Shift+m scratchpad show ; resize set 1920 920 ; move position center
256
257# start a terminal
258# bindsym $mod+Return exec i3-sensible-terminal
259bindsym $mod+Return exec "killall rofi ; rofi -show drun -show-icons"
260bindsym Mod1+F2 exec "killall rofi ; rofi -show drun -bg #222222 -fg #888888 -hlbg #285577 -hlfg #ffffff -show-icons -5"
261bindsym $mod+t exec alacritty
262bindsym $mod+e exec thunar
263bindsym $mod+l exec swaylock -K -f -F -c "#000000" --text-color '#ffffff' --indicator-radius 200 --indicator-thickness 10
264bindsym $mod+d exec i3-dmenu-desktop
265# Pulse Audio controls
266bindsym $mod+F10 exec pactl set-sink-mute @DEFAULT_SINK@ toggle
267bindsym $mod+F11 exec pactl set-sink-volume @DEFAULT_SINK@ -5%
268bindsym $mod+F12 exec pactl set-sink-volume @DEFAULT_SINK@ +5%
269bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
270bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
271bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
272
273
274
275# change focus between tiling / floating windows
276# bindsym $mod+space focus mode_toggle
277
278# focus the child container
279#bindsym $mod+d focus child
280
281# exit i3 (logs you out of your X session)
282# bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
283# split in horizontal orientation
284# bindsym $mod+h split h
285
286# split in vertical orientation
287# bindsym $mod+v split v
288
289# resize window (you can also use the mouse for that)
290bindsym $mod+r mode "resize"
291mode "resize" {
292 # These bindings trigger as soon as you enter the resize mode
293
294 # Pressing left will shrink the window’s width.
295 # Pressing right will grow the window’s width.
296 # Pressing up will shrink the window’s height.
297 # Pressing down will grow the window’s height.
298 bindsym $mod+h resize shrink width 4 px or 4 ppt
299 bindsym $mod+j resize grow height 4 px or 4 ppt
300 bindsym $mod+k resize shrink height 4 px or 4 ppt
301 bindsym $mod+l resize grow width 4 px or 4 ppt
302
303 # same bindings, but for the arrow keys
304 bindsym Left resize shrink width 4 px or 4 ppt
305 bindsym Up resize grow height 4 px or 4 ppt
306 bindsym Down resize shrink height 4 px or 4 ppt
307 bindsym Right resize grow width 4 px or 4 ppt
308
309 # back to normal: Enter or Escape
310 bindsym Return mode "default"
311 bindsym Escape mode "default"
312}
313
314
315set $mode_brightness "display brightness 🔅 🔆"
316bindsym $mod+b mode $mode_brightness
317mode $mode_brightness {
318 bindsym Up exec xrandr-brightness .1
319 bindsym Down exec xrandr-brightness -.1
320 bindsym Return mode "default"
321 bindsym Escape mode "default"
322}
323
324
325# Press $mod+o followed by either f, t, Escape or Return to launch firefox,
326# thunderbird or return to the default mode, respectively.
327set $mode_launcher Launch: [f]irefox [t]hunderbird
328bindsym $mod+o mode "$mode_launcher"
329
330mode "$mode_launcher" {
331 bindsym f exec firefox
332 bindsym t exec thunderbird
333
334 bindsym Escape mode "default"
335 bindsym Return mode "default"
336}
337# bindsym $mod+d exec --no-startup-id j4-dmenu-desktop
338# exec xrandr --dpi 95.48 --output LVDS-1 --mode 1024x768 && xrandr --output LVDS-1 --mode 1280x800
339# bindcode 156
340# exec xrandr --output DP-1 --rotate left --pos 1920x-420
341# exec xrandr --output DP1 --rotate left --right-of HDMI1
342# exec xrandr --output DP1 --rotate left --pos 1920x-420
343
344
345
346
347
348
349# ================================================================================
350# Execute (autostart) further applications
351
352#! exec: execute when starting
353#! exec_always: execute when starting or restarting
354# ================================================================================
355
356
357# exec xrandr --output HDMI-1 --right-of DP-1
358# exec xrandr --output HDMI-1 --right-of VGA-1
359# exec /usr/bin/xrandr-reset.sh
360# exec setsid xautolock -locker swaylock
361
362exec swayidle -w timeout 300 'swaylock -f' timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000'
363
364# exec gnome-keyring-daemon --start --components=secrets
365# start compositor...
366# exec compton -b --config ~/.config/i3/compton.conf
367# exec nitrogen --restore
368exec mako
369bindsym ctrl+space exec makoctl dismiss -a
370
371exec nm-applet
372# exec pidgin
373exec bash -c 'for d in ~/.config/autostart/*.desktop; do awk -e 'match($0,"Exec=(.*)",q){ gsub(/ %.+/, "", q[1]); system("setsid -f " q[1])};' $d; done'
374
375# exec setxkbmap de,us -device evdev -model pc105 -option "" -option keypad:pointerkeys,grp_led:caps,grp:caps_toggle,terminate:ctrl_alt_bksp -v 1 -print
376# exec xset r rate 330 40
377# exec xinput --set-prop 'Xornet gaming mouse' 'libinput Accel Speed' 0.1
378# exec setxkbmap -option caps:escape
379
380
381
382# input 16700:8467:Dell_KB216_Wired_Keyboard_Consumer_Control {
383# xkb_layout "us"
384# xkb_variant "altgr-intl,nodeadkeys"
385# xkb_options "keypad:pointerkeys,grp_led:caps,grp:caps_toggle,terminate:ctrl_alt_bksp"
386# xkb_model "pc105"
387# xkb_numlock "enable"
388# repeat_delay 100
389# repeat_rate 330
390# }
391
392
393
394
395
396# exec setsid hexchat -e --minimize=2
397exec termite -e /home/max/.local/bin/weechat
398
399
400# vim: iskeyword+=\$,\-,\#,(,) nospell ft=tcl
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0aacfa7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,3 @@
1all:
2 cat [0-9]*.conf > config
3 swaymsg reload
diff --git a/config b/config
index 6c36825..714e8e1 100644
--- a/config
+++ b/config
@@ -1,3 +1,22 @@
1## Base16 PaperColor Dark
2# Author: Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme)
3
4# set $base00 #1c1c1c
5# set $base01 #af005f
6# set $base02 #5faf00
7# set $base03 #d7af5f
8# set $base04 #5fafd7
9# set $base05 #808080
10# set $base06 #d7875f
11# set $base07 #d0d0d0
12# set $base08 #585858
13# set $base09 #5faf5f
14# set $base0A #afd700
15# set $base0B #af87d7
16# set $base0C #ffaf00
17# set $base0D #ff5faf
18# set $base0E #00afaf
19# set $base0F #5f8787
1# sway configuration file 20# sway configuration file
2# man sway(5) 21# man sway(5)
3 22
@@ -11,13 +30,20 @@ include /home/max/.local/share/base16/base16-sway/themes/base16-tomorrow-night.c
11include config_exec 30include config_exec
12 31
13 32
14 33output DP-1 {
15output LVDS-1 {
16 # pos 0 420
17 pos 0 0 34 pos 0 0
18 # res 1920x1080 35 # res 1920x1080
19 # background ~/.local/share/backgrounds/02-procrastination-hd1080.png center $base01 36 # background ~/.local/share/backgrounds/02-procrastination-hd1080.png center $base01
20 background ~/.local/share/backgrounds/osb3unzg9j941-1280.png stretch $base01 37 # background ~/.local/share/backgrounds/osb3unzg9j941-1280.png stretch $base01
38 background ~/.local/share/backgrounds/01-0.jpg fill
39 dpms on
40}
41
42output DP-2 {
43 pos 1920 0
44 res 1920x1080
45 background ~/.local/share/backgrounds/01-1.jpg fill
46 # transform 270
21 dpms on 47 dpms on
22} 48}
23 49
@@ -100,8 +126,11 @@ bindsym Mod4+Shift+9 move container to workspace $WS9
100# ================================================================================ 126# ================================================================================
101xwayland enable 127xwayland enable
102# hide_edge_borders both 128# hide_edge_borders both
129# hide_edge_borders horizontal
130hide_edge_borders smart_no_gaps
103title_align left 131title_align left
104# gaps inner 6 132# gaps inner 4
133# gaps outer 0
105# smart_gaps on 134# smart_gaps on
106# smart_borders no_gaps 135# smart_borders no_gaps
107# focus_follows_mouse no 136# focus_follows_mouse no
@@ -117,11 +146,12 @@ font pango:sans 9
117# font pango:Code New Roman Nerd Font 9 146# font pango:Code New Roman Nerd Font 9
118 147
119 148
120include /home/max/.config/base16/base16-sway/themes/base16-tomorrow.config 149# include /home/max/.config/base16/base16-sway/themes/base16-tomorrow.config
150# include /home/max/.config/base16/base16-sway/themes/base16-papercolor-light.config
121# main variables ssource default 151# main variables ssource default
122# d variable default 152# d variable default
123set $background $base01 153set $background $base00
124set $foreground $base05 154set $foreground $base0D
125set $cursorColor $foreground 155set $cursorColor $foreground
126 156
127# set_from_resource $foreground base16.cursor $cursorColor 157# set_from_resource $foreground base16.cursor $cursorColor
@@ -139,32 +169,39 @@ bar {
139 mode dock 169 mode dock
140 strip_workspace_numbers yes 170 strip_workspace_numbers yes
141 # separator_symbol "|" 171 # separator_symbol "|"
142 separator_symbol " " 172 separator_symbol " "
173 status_padding 6
174 status_edge_padding 8
143 175
144 colors { 176 colors {
145 background #000000cc 177 background #000000cc
146 separator $foreground 178 separator $foreground
147 statusline $foreground 179 statusline $foreground
148 180
149 focused_workspace $background $background $base05 181 focused_workspace $background $background $base0D
150 active_workspace $background $background $cursorColor 182 active_workspace $background $background $base04
151 inactive_workspace $background $background $base03 183 inactive_workspace $background $background $base03
152 urgent_workspace $background $background $base08 184 urgent_workspace $background $background $base08
153 binding_mode $background $background $foreground 185 binding_mode $background $background $foreground
154 } 186 }
187
188 binding_mode_indicator yes
155} 189}
156 190
191
157# Basic color configuration using the Base16 variables for windows and borders. 192# Basic color configuration using the Base16 variables for windows and borders.
158# Property Name Border BG Text Indicator Child Border 193# Property Name Border BG Text Indicator Child Border
159client.focused $base05 $base0D $base00 $base0D $base0D 194client.focused $base05 $base0D $base00 $base0D $base0D
160client.focused_inactive $base01 $base01 $base05 $base03 $base01 195client.focused_inactive $base05 $base01 $base07 $base03 $base01
161client.unfocused $base01 $base00 $base05 $base01 $base01 196client.unfocused $base05 $base00 $base05 $base01 $base01
162client.urgent $base08 $base08 $base00 $base08 $base08 197client.urgent $base08 $base08 $base00 $base08 $base08
163client.placeholder $base00 $base00 $base05 $base00 $base00 198client.placeholder $base00 $base00 $base05 $base00 $base00
164client.background $background 199client.background $background
165 200
166 201
167 202
203default_border pixel 2
204# default_border normal
168 205
169# ================================================================================ 206# ================================================================================
170# windows assignments and special treatment, e.g. icons 207# windows assignments and special treatment, e.g. icons
@@ -194,8 +231,8 @@ for_window [title="(?i)weechat"] title_format " %title"
194for_window [title="YouTube"] title_format " %title" 231for_window [title="YouTube"] title_format " %title"
195for_window [title=""] title_format "%title" 232for_window [title=""] title_format "%title"
196for_window [title=" "] title_format "%title" 233for_window [title=" "] title_format "%title"
197for_window [title=" "] border pixel 0 234# for_window [title=" "] border pixel 0
198for_window [app_id=".*terminal"] border pixel 0 235# for_window [app_id=".*terminal"] border pixel 0
199 236
200# for_window [class="(?i)xfce4-terminal"] border pixel 0 237# for_window [class="(?i)xfce4-terminal"] border pixel 0
201# for_window [class="(?i)xfce4-appfinder"] border pixel 0 238# for_window [class="(?i)xfce4-appfinder"] border pixel 0
@@ -265,7 +302,7 @@ bindsym $mod+Shift+Right move right
265bindsym $mod+s layout stacking 302bindsym $mod+s layout stacking
266bindsym $mod+w layout tabbed 303bindsym $mod+w layout tabbed
267bindsym $mod+q layout toggle split 304bindsym $mod+q layout toggle split
268bindsym $mod+x layout toggle all 305bindsym $mod+x layout toggle tabbed splitv
269 306
270bindsym $mod+v split toggle 307bindsym $mod+v split toggle
271bindsym $mod+space split toggle 308bindsym $mod+space split toggle
@@ -282,9 +319,10 @@ bindsym $mod+Shift+m scratchpad show ; res
282# start a terminal 319# start a terminal
283# bindsym $mod+Return exec i3-sensible-terminal 320# bindsym $mod+Return exec i3-sensible-terminal
284# bindsym $mod+Return exec "killall rofi ; rofi -show drun -show-icons" 321# bindsym $mod+Return exec "killall rofi ; rofi -show drun -show-icons"
285bindsym $mod+Return exec dmenu_run 322# bindsym $mod+Return exec dmenu_run
323bindsym $mod+Return exec env BEMENU_BACKEND=wayland bemenu-run -f monospace 20 30 -H 25 --grab
286bindsym Mod1+F2 exec "killall rofi ; rofi -show drun -bg #222222 -fg #888888 -hlbg #285577 -hlfg #ffffff -show-icons -5" 324bindsym Mod1+F2 exec "killall rofi ; rofi -show drun -bg #222222 -fg #888888 -hlbg #285577 -hlfg #ffffff -show-icons -5"
287bindsym $mod+t exec xfce4-terminal 325bindsym $mod+t exec alacritty
288bindsym $mod+y exec gnome-terminal 326bindsym $mod+y exec gnome-terminal
289bindsym $mod+e exec thunar 327bindsym $mod+e exec thunar
290bindsym $mod+l exec swaylock -K -f -F -c "#000000" --text-color '#ffffff' --indicator-radius 200 --indicator-thickness 10 328bindsym $mod+l exec swaylock -K -f -F -c "#000000" --text-color '#ffffff' --indicator-radius 200 --indicator-thickness 10
diff --git a/env b/env
index aa2e28e..4cc2978 100644
--- a/env
+++ b/env
@@ -6,4 +6,3 @@ GTK_IM_MODULE=ibus
6# export GTK_IM_MODULE_FILE=/usr/lib/gtk-3.0/3.0.0/immodules.cache 6# export GTK_IM_MODULE_FILE=/usr/lib/gtk-3.0/3.0.0/immodules.cache
7GTK_IM_MODULE_FILE=/etc/gtk-2.0/gtk.immodules 7GTK_IM_MODULE_FILE=/etc/gtk-2.0/gtk.immodules
8XDG_CURRENT_DESKTOP=Unity 8XDG_CURRENT_DESKTOP=Unity
9
..