diff options
Diffstat (limited to 'dot_config/i3')
-rw-r--r-- | dot_config/i3/config | 1 | ||||
-rw-r--r-- | dot_config/i3/scripts/executable_powermenu | 14 |
2 files changed, 8 insertions, 7 deletions
diff --git a/dot_config/i3/config b/dot_config/i3/config index 4175611..f1d3a04 100644 --- a/dot_config/i3/config +++ b/dot_config/i3/config | |||
@@ -536,6 +536,7 @@ bar { | |||
536 | urgent_workspace $urgentred $urgentred $white $purple | 536 | urgent_workspace $urgentred $urgentred $white $purple |
537 | } | 537 | } |
538 | } | 538 | } |
539 | |||
539 | # you can add different bars for multidisplay setups on each display: | 540 | # you can add different bars for multidisplay setups on each display: |
540 | # set output HDMI-0 to the display you want the bar, --transparency can be set. | 541 | # set output HDMI-0 to the display you want the bar, --transparency can be set. |
541 | # Transparency needs rgba color codes to be used where the last two letters are the transparency factor see here: | 542 | # Transparency needs rgba color codes to be used where the last two letters are the transparency factor see here: |
diff --git a/dot_config/i3/scripts/executable_powermenu b/dot_config/i3/scripts/executable_powermenu index 989ab2c..1ea1caf 100644 --- a/dot_config/i3/scripts/executable_powermenu +++ b/dot_config/i3/scripts/executable_powermenu | |||
@@ -114,13 +114,13 @@ typeset -A menu | |||
114 | # Menu with keys/commands | 114 | # Menu with keys/commands |
115 | 115 | ||
116 | menu=( | 116 | menu=( |
117 | [ Shutdown]="systemctl poweroff" | 117 | [Shutdown]="systemctl poweroff" |
118 | [ Reboot]="systemctl reboot" | 118 | [Reboot]="systemctl reboot" |
119 | [ Suspend]="systemctl suspend" | 119 | [Suspend]="systemctl suspend" |
120 | [ Hibernate]="systemctl hibernate" | 120 | [Hibernate]="systemctl hibernate" |
121 | [ Lock]="~/.config/i3/scripts/blur-lock" | 121 | [Lock]="~/.config/i3/scripts/blur-lock" |
122 | [ Logout]="i3-msg exit" | 122 | [Logout]="i3-msg exit" |
123 | [ Cancel]="" | 123 | [Cancel]="" |
124 | ) | 124 | ) |
125 | 125 | ||
126 | menu_nrows=${#menu[@]} | 126 | menu_nrows=${#menu[@]} |