fix i3 and removed /removable
This commit is contained in:
parent
b9aaa45d56
commit
3d359ebef4
2 changed files with 21 additions and 5 deletions
|
@ -232,6 +232,22 @@ in
|
||||||
in
|
in
|
||||||
"exec ${script}";
|
"exec ${script}";
|
||||||
|
|
||||||
|
"${cfg.config.modifier}+Shift+grave" =
|
||||||
|
let
|
||||||
|
script = pkgs.writers.writeBash "move-workspace" ''
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
${pkgs.i3}/bin/i3-msg -t get_workspaces | \
|
||||||
|
${pkgs.jq}/bin/jq --raw-output '.[] | .name' | \
|
||||||
|
${pkgs.rofi}/bin/rofi -dmenu -p 'Select Workspace' | \
|
||||||
|
while read line
|
||||||
|
do
|
||||||
|
${pkgs.i3}/bin/i3-msg move container to workspace "$line"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
"exec ${script}";
|
||||||
|
|
||||||
"${cfg.config.modifier}+Shift+c" = "reload";
|
"${cfg.config.modifier}+Shift+c" = "reload";
|
||||||
"${cfg.config.modifier}+Shift+r" = "restart";
|
"${cfg.config.modifier}+Shift+r" = "restart";
|
||||||
"${cfg.config.modifier}+Shift+e" = "exec i3-nagbar -t warning -m 'Do you want to exit i3?' -b 'Yes' 'i3-msg exit'";
|
"${cfg.config.modifier}+Shift+e" = "exec i3-nagbar -t warning -m 'Do you want to exit i3?' -b 'Yes' 'i3-msg exit'";
|
||||||
|
|
|
@ -44,11 +44,11 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/removable" =
|
#fileSystems."/removable" =
|
||||||
{
|
# {
|
||||||
device = "/dev/disk/by-uuid/081de08c-b080-4a05-9915-235caae193e7";
|
# device = "/dev/disk/by-uuid/081de08c-b080-4a05-9915-235caae193e7";
|
||||||
fsType = "ext4";
|
# fsType = "ext4";
|
||||||
};
|
# };
|
||||||
|
|
||||||
fileSystems."/share" = {
|
fileSystems."/share" = {
|
||||||
device = "none";
|
device = "none";
|
||||||
|
|
Loading…
Reference in a new issue