Compare commits
7 commits
60c4484fd6
...
c6577fa217
Author | SHA1 | Date | |
---|---|---|---|
c6577fa217 | |||
02ab9afb31 | |||
63ba73b706 | |||
34a0ad6105 | |||
f43cea07d8 | |||
5a2f17f2eb | |||
1a9bc7a602 |
4 changed files with 7 additions and 10 deletions
|
@ -32,7 +32,7 @@ font xft:URWGothic-Book 11
|
||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
|
||||||
# start a terminal
|
# start a terminal
|
||||||
bindsym $mod+Return exec kitty
|
bindsym $mod+Return exec sakura
|
||||||
|
|
||||||
# kill focused window
|
# kill focused window
|
||||||
bindsym $mod+Shift+q kill
|
bindsym $mod+Shift+q kill
|
||||||
|
@ -42,7 +42,7 @@ bindsym $mod+Shift+q kill
|
||||||
bindsym $mod+d exec --no-startup-id rofi -show drun
|
bindsym $mod+d exec --no-startup-id rofi -show drun
|
||||||
bindsym $mod+Tab exec --no-startup-id rofi -show window
|
bindsym $mod+Tab exec --no-startup-id rofi -show window
|
||||||
#bindsym $mod+Shift+p exec --no-startup-id bwmenu
|
#bindsym $mod+Shift+p exec --no-startup-id bwmenu
|
||||||
bindsym $mod+Shift+p exec --no-startup-id rofi-rbw --action copy-password
|
bindsym $mod+Shift+p exec --no-startup-id rofi-rbw --action copy
|
||||||
|
|
||||||
bindsym $mod+Shift+v exec --no-startup-id /home/julius/.local/bin/startvm.sh
|
bindsym $mod+Shift+v exec --no-startup-id /home/julius/.local/bin/startvm.sh
|
||||||
|
|
||||||
|
@ -206,7 +206,7 @@ bindsym $mod+Ctrl+7 move container to workspace $ws7; workspace $ws7
|
||||||
bindsym $mod+Ctrl+8 move container to workspace $ws8; workspace $ws8
|
bindsym $mod+Ctrl+8 move container to workspace $ws8; workspace $ws8
|
||||||
|
|
||||||
# Open applications on specific workspaces
|
# Open applications on specific workspaces
|
||||||
assign [class="Thunderbird"] $ws6
|
assign [class="thunderbird"] $ws6
|
||||||
assign [class="TelegramDesktop"] $ws5
|
assign [class="TelegramDesktop"] $ws5
|
||||||
assign [class="discord"] $ws5
|
assign [class="discord"] $ws5
|
||||||
assign [class="Signal"] $ws5
|
assign [class="Signal"] $ws5
|
||||||
|
@ -299,12 +299,13 @@ mode "resize" {
|
||||||
exec dunst
|
exec dunst
|
||||||
exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
||||||
exec --no-startup-id nitrogen --restore
|
exec --no-startup-id nitrogen --restore
|
||||||
|
exec --no-startup-id solaar -w hide
|
||||||
#exec --no-startup-id wpa_gui -qt
|
#exec --no-startup-id wpa_gui -qt
|
||||||
exec --no-startup-id nm-applet
|
exec --no-startup-id nm-applet
|
||||||
# exec --no-startup-id blueman-applet
|
# exec --no-startup-id blueman-applet
|
||||||
exec redshift-gtk
|
exec redshift-gtk
|
||||||
exec --no-startup-id dockd --daemon
|
exec --no-startup-id dockd --daemon
|
||||||
#exec light-locker
|
exec light-locker
|
||||||
# Color palette used for the terminal ( ~/.Xresources file )
|
# Color palette used for the terminal ( ~/.Xresources file )
|
||||||
# Colors are gathered based on the documentation:
|
# Colors are gathered based on the documentation:
|
||||||
# https://i3wm.org/docs/userguide.html#xresources
|
# https://i3wm.org/docs/userguide.html#xresources
|
||||||
|
|
|
@ -54,10 +54,6 @@ label=
|
||||||
instance=Capture
|
instance=Capture
|
||||||
interval=1
|
interval=1
|
||||||
|
|
||||||
[workadventure]
|
|
||||||
label=
|
|
||||||
interval=60
|
|
||||||
|
|
||||||
[wifi]
|
[wifi]
|
||||||
label=
|
label=
|
||||||
instance=wlp4s0
|
instance=wlp4s0
|
||||||
|
|
|
@ -25,7 +25,7 @@ my $short_text;
|
||||||
my $bat_number = $ENV{BLOCK_INSTANCE} || 0;
|
my $bat_number = $ENV{BLOCK_INSTANCE} || 0;
|
||||||
|
|
||||||
# read the first line of the "acpi" command output
|
# read the first line of the "acpi" command output
|
||||||
open (ACPI, "acpi -b | grep 'Battery $bat_number' |") or die;
|
open (ACPI, "acpi -b | grep -v 'unavailable' |") or die;
|
||||||
$acpi = <ACPI>;
|
$acpi = <ACPI>;
|
||||||
close(ACPI);
|
close(ACPI);
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
lock)
|
lock)
|
||||||
i3lock -B 10 --pass-media-keys --pass-screen-keys
|
light-locker-command -l
|
||||||
;;
|
;;
|
||||||
switch_user)
|
switch_user)
|
||||||
dm-tool lock
|
dm-tool lock
|
||||||
|
|
Loading…
Reference in a new issue