diff options
author | Matt Singleton <matt@xcolour.net> | 2023-02-02 20:14:34 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2023-02-02 20:14:34 -0600 |
commit | c00005364805f876a7d5a1c2e29f6ecc4f004947 (patch) | |
tree | e8d2736dbe1309e2e4a734c45a3c1472d6682971 | |
parent | e934367e6ddcd171ba57cf1e6ad4009033179784 (diff) |
simplify desktops
-rw-r--r-- | config/sway/config | 12 | ||||
-rw-r--r-- | config/waybar/config | 7 |
2 files changed, 7 insertions, 12 deletions
diff --git a/config/sway/config b/config/sway/config index a2a0284..866cf77 100644 --- a/config/sway/config +++ b/config/sway/config @@ -97,7 +97,6 @@ exec rm -f $WOBSOCK && mkfifo $WOBSOCK && tail -f $WOBSOCK | wob # Exit sway (logs you out of your Wayland session) bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit' bindsym $mod+Shift+i exec swaylock - bindsym $mod+Shift+comma exec 1password --toggle # Media keys bindsym XF86AudioRaiseVolume exec ~/.local/bin/setvol up > $WOBSOCK @@ -246,15 +245,12 @@ bar { # Apps # -for_window [class="1Password"] floating enable for_window [app_id="firefox"] inhibit_idle fullscreen -assign [class="Tauon Music Box"] workspace number 3 -assign [class="Joplin"] workspace number 4 +assign [app_id="firefox"] workspace number 1 -# -# Notifications -# +workspace 2 +exec $term +exec firefox & -#exec mako include /etc/sway/config.d/* diff --git a/config/waybar/config b/config/waybar/config index fc238e5..d8cefd2 100644 --- a/config/waybar/config +++ b/config/waybar/config @@ -11,15 +11,14 @@ "format": "{icon}", "format-icons": { "1": "", - "2": "", - "3": "", - "4": "" + "2": "" } }, "clock#local": { "interval": 1, "format": "{:%a %d %b %I:%M %p}", - "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>" + "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", + "today-format": "<b>{}</b>" }, "temperature": { "critical-threshold": 80, |