diff --git a/.config/leftwm/config.ron b/.config/leftwm/config.ron
new file mode 100644
index 0000000..eafe408
--- /dev/null
+++ b/.config/leftwm/config.ron
@@ -0,0 +1,95 @@
+// _ ___ ___ _
+// | | / __)_ / __|_)
+// | | ____| |__| |_ _ _ _ ____ ____ ___ ____ | |__ _ ____ ____ ___ ____
+// | |/ _ ) __) _) | | | \ / ___) _ \| _ \| __) |/ _ | / ___) _ \| _ \
+// | ( (/ /| | | |_| | | | | | | ( (__| |_| | | | | | | ( ( | |_| | | |_| | | | |
+// |_|\____)_| \___)____|_|_|_| \____)___/|_| |_|_| |_|\_|| (_)_| \___/|_| |_|
+// A WindowManager for Adventurers (____/
+// For info about configuration please visit https://github.com/leftwm/leftwm/wiki
+
+#![enable(implicit_some)]
+(
+ modkey: "Mod4",
+ mousekey: "Mod4",
+ workspaces: [],
+ tags: [
+ " dev ",
+ " www ",
+ " sys ",
+ " doc ",
+ " vbox ",
+ " chat ",
+ " mus ",
+ " vid ",
+ " gfx ",
+ ],
+ max_window_width: None,
+ layouts: [
+ MainAndVertStack,
+ MainAndHorizontalStack,
+ MainAndDeck,
+ GridHorizontal,
+ EvenHorizontal,
+ EvenVertical,
+ Fibonacci,
+ LeftMain,
+ CenterMain,
+ CenterMainBalanced,
+ CenterMainFluid,
+ Monocle,
+ RightWiderLeftStack,
+ LeftWiderRightStack,
+ ],
+ layout_mode: Workspace,
+ insert_behavior: Bottom,
+ scratchpad: [
+ (name: "Alacritty", value: "alacritty", x: 860, y: 390, height: 300, width: 200),
+ ],
+ window_rules: [],
+ disable_current_tag_swap: false,
+ disable_tile_drag: false,
+ disable_window_snap: true,
+ focus_behaviour: Sloppy,
+ focus_new_windows: true,
+ sloppy_mouse_follows_focus: true,
+ keybind: [
+ (command: Execute, value: "dmenu_run", modifier: ["modkey", "Shift"], key: "Return"),
+ (command: Execute, value: "alacritty -e fish", modifier: ["modkey"], key: "Return"),
+ (command: CloseWindow, value: "", modifier: ["modkey", "Shift"], key: "c"),
+ (command: SoftReload, value: "", modifier: ["modkey", "Shift"], key: "r"),
+ (command: Execute, value: "pkill leftwm", modifier: ["modkey", "Shift"], key: "q"),
+ (command: Execute, value: "slock", modifier: ["modkey", "Control"], key: "l"),
+ (command: MoveToLastWorkspace, value: "", modifier: ["modkey", "Shift"], key: "w"),
+ (command: SwapTags, value: "", modifier: ["modkey"], key: "w"),
+ (command: MoveWindowUp, value: "", modifier: ["modkey", "Shift"], key: "k"),
+ (command: MoveWindowDown, value: "", modifier: ["modkey", "Shift"], key: "j"),
+ (command: MoveWindowTop, value: "", modifier: ["modkey", "Shift"], key: "m"),
+ (command: FocusWindowUp, value: "", modifier: ["modkey"], key: "k"),
+ (command: FocusWindowDown, value: "", modifier: ["modkey"], key: "j"),
+ (command: NextLayout, value: "", modifier: ["modkey"], key: "Tab"),
+ (command: PreviousLayout, value: "", modifier: ["modkey", "Shift"], key: "Tab"),
+ (command: FocusWorkspaceNext, value: "", modifier: ["modkey"], key: "period"),
+ (command: FocusWorkspacePrevious, value: "", modifier: ["modkey"], key: "comma"),
+ (command: GotoTag, value: "1", modifier: ["modkey"], key: "1"),
+ (command: GotoTag, value: "2", modifier: ["modkey"], key: "2"),
+ (command: GotoTag, value: "3", modifier: ["modkey"], key: "3"),
+ (command: GotoTag, value: "4", modifier: ["modkey"], key: "4"),
+ (command: GotoTag, value: "5", modifier: ["modkey"], key: "5"),
+ (command: GotoTag, value: "6", modifier: ["modkey"], key: "6"),
+ (command: GotoTag, value: "7", modifier: ["modkey"], key: "7"),
+ (command: GotoTag, value: "8", modifier: ["modkey"], key: "8"),
+ (command: GotoTag, value: "9", modifier: ["modkey"], key: "9"),
+ (command: MoveToTag, value: "1", modifier: ["modkey", "Shift"], key: "1"),
+ (command: MoveToTag, value: "2", modifier: ["modkey", "Shift"], key: "2"),
+ (command: MoveToTag, value: "3", modifier: ["modkey", "Shift"], key: "3"),
+ (command: MoveToTag, value: "4", modifier: ["modkey", "Shift"], key: "4"),
+ (command: MoveToTag, value: "5", modifier: ["modkey", "Shift"], key: "5"),
+ (command: MoveToTag, value: "6", modifier: ["modkey", "Shift"], key: "6"),
+ (command: MoveToTag, value: "7", modifier: ["modkey", "Shift"], key: "7"),
+ (command: MoveToTag, value: "8", modifier: ["modkey", "Shift"], key: "8"),
+ (command: MoveToTag, value: "9", modifier: ["modkey", "Shift"], key: "9"),
+ (command: IncreaseMainWidth, value: "1", modifier: ["modkey", "Shift"], key: "l"),
+ (command: DecreaseMainWidth, value: "1", modifier: ["modkey", "Shift"], key: "h"),
+ ],
+ state_path: None,
+)
\ No newline at end of file
diff --git a/.config/leftwm/config.toml b/.config/leftwm/config.toml
deleted file mode 100644
index aa2470b..0000000
--- a/.config/leftwm/config.toml
+++ /dev/null
@@ -1,212 +0,0 @@
-modkey = "Mod4"
-workspaces = []
-tags = [" dev ", " www ", " sys ", " doc ", " vbox ", " chat ", " mus ", " vid ", " gfx "]
-
-[[keybind]]
-command = "Execute"
-value = "dmenu_run"
-modifier = ["modkey", "Shift"]
-key = "Return"
-
-[[keybind]]
-command = "Execute"
-value = "alacritty -e fish"
-modifier = ["modkey"]
-key = "Return"
-
-[[keybind]]
-command = "CloseWindow"
-modifier = ["modkey", "Shift"]
-key = "c"
-
-[[keybind]]
-command = "SoftReload"
-modifier = ["modkey", "Shift"]
-key = "r"
-
-[[keybind]]
-command = "Execute"
-value = "pkill leftwm"
-modifier = ["modkey", "Shift"]
-key = "q"
-
-[[keybind]]
-command = "Execute"
-value = "slock"
-modifier = ["modkey", "Control"]
-key = "l"
-
-[[keybind]]
-command = "MoveToLastWorkspace"
-modifier = ["modkey", "Shift"]
-key = "w"
-
-[[keybind]]
-command = "SwapTags"
-modifier = ["modkey"]
-key = "w"
-
-[[keybind]]
-command = "MoveWindowUp"
-modifier = ["modkey", "Shift"]
-key = "k"
-
-[[keybind]]
-command = "MoveWindowDown"
-modifier = ["modkey", "Shift"]
-key = "j"
-
-[[keybind]]
-command = "MoveWindowTop"
-modifier = ["modkey", "Shift"]
-key = "m"
-
-[[keybind]]
-command = "FocusWindowUp"
-modifier = ["modkey"]
-key = "k"
-
-[[keybind]]
-command = "FocusWindowDown"
-modifier = ["modkey"]
-key = "j"
-
-[[keybind]]
-command = "NextLayout"
-modifier = ["modkey"]
-key = "Tab"
-
-[[keybind]]
-command = "PreviousLayout"
-modifier = ["modkey", "Shift"]
-key = "Tab"
-
-[[keybind]]
-command = "FocusWorkspaceNext"
-modifier = ["modkey"]
-key = "period"
-
-[[keybind]]
-command = "FocusWorkspacePrevious"
-modifier = ["modkey"]
-key = "comma"
-
-[[keybind]]
-command = "GotoTag"
-value = "1"
-modifier = ["modkey"]
-key = "1"
-
-[[keybind]]
-command = "GotoTag"
-value = "2"
-modifier = ["modkey"]
-key = "2"
-
-[[keybind]]
-command = "GotoTag"
-value = "3"
-modifier = ["modkey"]
-key = "3"
-
-[[keybind]]
-command = "GotoTag"
-value = "4"
-modifier = ["modkey"]
-key = "4"
-
-[[keybind]]
-command = "GotoTag"
-value = "5"
-modifier = ["modkey"]
-key = "5"
-
-[[keybind]]
-command = "GotoTag"
-value = "6"
-modifier = ["modkey"]
-key = "6"
-
-[[keybind]]
-command = "GotoTag"
-value = "7"
-modifier = ["modkey"]
-key = "7"
-
-[[keybind]]
-command = "GotoTag"
-value = "8"
-modifier = ["modkey"]
-key = "8"
-
-[[keybind]]
-command = "GotoTag"
-value = "9"
-modifier = ["modkey"]
-key = "9"
-
-[[keybind]]
-command = "MoveToTag"
-value = "1"
-modifier = ["modkey", "Shift"]
-key = "1"
-
-[[keybind]]
-command = "MoveToTag"
-value = "2"
-modifier = ["modkey", "Shift"]
-key = "2"
-
-[[keybind]]
-command = "MoveToTag"
-value = "3"
-modifier = ["modkey", "Shift"]
-key = "3"
-
-[[keybind]]
-command = "MoveToTag"
-value = "4"
-modifier = ["modkey", "Shift"]
-key = "4"
-
-[[keybind]]
-command = "MoveToTag"
-value = "5"
-modifier = ["modkey", "Shift"]
-key = "5"
-
-[[keybind]]
-command = "MoveToTag"
-value = "6"
-modifier = ["modkey", "Shift"]
-key = "6"
-
-[[keybind]]
-command = "MoveToTag"
-value = "7"
-modifier = ["modkey", "Shift"]
-key = "7"
-
-[[keybind]]
-command = "MoveToTag"
-value = "8"
-modifier = ["modkey", "Shift"]
-key = "8"
-
-[[keybind]]
-command = "MoveToTag"
-value = "9"
-modifier = ["modkey", "Shift"]
-key = "9"
-
-[[keybind]]
-command = "IncreaseMainWidth"
-value = "1"
-modifier = ["modkey", "Shift"]
-key = "l"
-
-[[keybind]]
-command = "DecreaseMainWidth"
-value = "1"
-modifier = ["modkey", "Shift"]
-key = "h"
diff --git a/.config/leftwm/themes/README.md b/.config/leftwm/themes/README.md
new file mode 100644
index 0000000..007e680
--- /dev/null
+++ b/.config/leftwm/themes/README.md
@@ -0,0 +1,48 @@
+# Why have themes
+
+With LeftWM, there are two types of configs:
+* **LeftWM Configuration files:** LeftWM configurations are specific to you and don’t change for different themes. These are settings like keybindings, workspace locations, and names of desktops/tags. These settings can be found in `~/.config/leftwm/config.toml`.
+
+* **Theme Configuration files:** The appearance of your desktop is different. It’s fun to try new looks and feels. It’s fun to tweak and customize the appearance (AKA: [ricing](https://www.reddit.com/r/unixporn/comments/3iy3wd/stupid_question_what_is_ricing/)). It’s fun to share so others can experience your awesome desktop! LeftWM is built around this concept. By pulling all these settings out into themes, you can now easily tweak, switch, and share your experiences. This configuration is spread between `theme.toml` and related files contained within a theme's folder.
+
+
+# We want your themes
+
+We are looking to expand the list of available themes for an upcoming release. If you enjoy making desktops look good please consider sharing by making a pull request on [the community themes repository](https://github.com/leftwm/leftwm-community-themes).
+
+
+# Requirements for a theme
+
+A theme has only two requirements. An “up” and a “down” executable/script. They can be written in whatever makes you happy. The up script you guessed it starts up all the things that make your script unique and awesome. The down script restores the environment to an un-themes state. A theme should be self contained if possible so that it can be shared and doesn’t interfere with other themes. For example when booting an application with a config file, put the config file in the theme folder instead of ~/.config. This way other themes can use the same application
+
+
+# Setup / selection of theme
+
+There are two ways to setup a theme: you can use [leftwm-theme](https://github.com/leftwm/leftwm-theme/) or you can set a symlink yourself.
+
+## Using LeftWM-theme
+Install LeftWM-theme, as per the directions on [its Github](https://github.com/leftwm/leftwm-theme).
+
+Update your list of themes:
+```bash
+leftwm-theme update
+```
+Install the theme you like:
+```bash
+leftwm-theme install "THEME NAME GOES HERE"
+```
+Apply the theme you like as the current theme:
+```bash
+leftwm-theme apply "THEME NAME GOES HERE"
+```
+
+## Using symlinks
+
+To select a theme all that is required is that it’s located at: `~/.config/leftwm/themes/current`
+It is strongly recommended that you do this with a symlink rather than creating a folder. Using a symlink makes it easy to save all your themes in the folder `~/.config/leftwm/themes` and switch between them using a symlink easily.
+
+The following command would set the included basic_polybar to the current theme:
+
+```bash
+ln -s ~/.config/leftwm/themes/basic_polybar ~/.config/leftwm/themes/current
+```
diff --git a/.config/leftwm/themes/basic_xmobar/background.jpg b/.config/leftwm/themes/basic_xmobar/background.jpg
new file mode 100644
index 0000000..5130f25
Binary files /dev/null and b/.config/leftwm/themes/basic_xmobar/background.jpg differ
diff --git a/.config/leftwm/themes/basic_xmobar/change_to_tag b/.config/leftwm/themes/basic_xmobar/change_to_tag
new file mode 100755
index 0000000..d652de4
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/change_to_tag
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+leftwm-command "SendWorkspaceToTag $1 $2"
diff --git a/.config/leftwm/themes/basic_xmobar/down b/.config/leftwm/themes/basic_xmobar/down
new file mode 100755
index 0000000..4e4f66a
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/down
@@ -0,0 +1,19 @@
+#!/usr/bin/env bash
+
+SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
+
+#set background
+if [ -x "$(command -v feh)" ]; then
+ feh --bg-scale $SCRIPTPATH/reset.jpg
+fi
+
+leftwm-command "UnloadTheme"
+
+
+ps -alh | grep xmobar_control_script | awk '{print $3}' | xargs kill
+
+pkill compton
+pkill picom
+pkill xmobar
+pkill xmobar
+
diff --git a/.config/leftwm/themes/basic_xmobar/reset.jpg b/.config/leftwm/themes/basic_xmobar/reset.jpg
new file mode 100644
index 0000000..da757f7
Binary files /dev/null and b/.config/leftwm/themes/basic_xmobar/reset.jpg differ
diff --git a/.config/leftwm/themes/basic_xmobar/sizes.liquid b/.config/leftwm/themes/basic_xmobar/sizes.liquid
new file mode 100644
index 0000000..020a3a2
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/sizes.liquid
@@ -0,0 +1,3 @@
+{% for w in workspaces %}
+Static { xpos = {{w.x}} , ypos = {{w.y}}, width = {{w.w}}, height = 24 }
+{% endfor %}
diff --git a/.config/leftwm/themes/basic_xmobar/template.liquid b/.config/leftwm/themes/basic_xmobar/template.liquid
new file mode 100644
index 0000000..9a5423a
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/template.liquid
@@ -0,0 +1,12 @@
+{% for tag in workspace.tags %}
+{% if tag.mine %}
+ {{tag.name}}
+{% elsif tag.visible %}
+ {{tag.name}}
+{% elsif tag.busy %}
+ {{tag.name}}*
+{% else %}
+ {{tag.name}}
+{% endif %}
+{% endfor %}
+ {{ window_title }}
diff --git a/.config/leftwm/themes/basic_xmobar/theme.ron b/.config/leftwm/themes/basic_xmobar/theme.ron
new file mode 100644
index 0000000..b0467ba
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/theme.ron
@@ -0,0 +1,6 @@
+(border_width: 2,
+margin: 12,
+default_border_color: "#222222",
+floating_border_color: "#555555",
+focused_border_color: "#FF3333",
+)
\ No newline at end of file
diff --git a/.config/leftwm/themes/basic_xmobar/up b/.config/leftwm/themes/basic_xmobar/up
new file mode 100755
index 0000000..24734d8
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/up
@@ -0,0 +1,42 @@
+#!/usr/bin/env bash
+export SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
+
+
+#down the last running theme
+if [ -f "/tmp/leftwm-theme-down" ]; then
+ /tmp/leftwm-theme-down
+ rm /tmp/leftwm-theme-down
+fi
+ln -s $SCRIPTPATH/down /tmp/leftwm-theme-down
+
+
+#boot compton or picom if it exists
+killall conky
+killall trayer
+lxsession &
+picom &
+nm-applet &
+volumeicon &
+/usr/bin/emacs --daemon &
+
+sleep 2 && conky -c $HOME/.config/conky/xmonad/doom-one-01.conkyrc
+sleep 2 && trayer --edge top --align right --widthtype request --padding 6 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 --tint 0x282c34 --height 22
+
+#set the theme.ron config
+leftwm-command "LoadTheme $SCRIPTPATH/theme.ron"
+
+
+# SET WALLPAPER
+# Uncomment only ONE of the following FOUR lines, depending on which wallpaper setter you use.
+xargs xwallpaper --stretch < ~/.cache/wall
+# ~/.fehbg &" -- set last saved feh wallpaper
+# feh --randomize --bg-fill /usr/share/backgrounds/dtos-backgrounds/*" -- feh set random wallpaper
+# nitrogen --restore &" -- if you prefer nitrogen to feh
+
+index=0
+leftwm-state -q -n -t $SCRIPTPATH/sizes.liquid | sed -r '/^\s*$/d' | while read size
+do
+ leftwm-state -w $index -t $SCRIPTPATH/template.liquid | xmobar -p "$size" $SCRIPTPATH/xmobar-config.hs --alpha=230 &
+ let index=index+1
+done
+
diff --git a/.config/leftwm/themes/basic_xmobar/xmobar-config-example.hs b/.config/leftwm/themes/basic_xmobar/xmobar-config-example.hs
new file mode 100644
index 0000000..c7b2a5a
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/xmobar-config-example.hs
@@ -0,0 +1,23 @@
+
+
+Config { font = "-misc-fixed-*-*-*-*-13-*-*-*-*-*-*-*"
+ , bgColor = "black"
+ , fgColor = "grey"
+ , position = Top
+ , lowerOnStart = True
+ , allDesktops = True
+ , pickBroadest = False
+ , overrideRedirect = False
+ , commands = [ Run Weather "KSHV" ["-t"," F","-L","64","-H","77","--normal","green","--high","red","--low","lightblue"] 36000
+ , Run Network "eno1" ["-L","0","-H","32","--normal","green","--high","red"] 10
+ , Run MultiCpu ["-L","15","-H","50","--normal","green","--high","red"] 10
+ , Run Memory [] 10
+ , Run Swap [] 10
+ , Run TopProc [] 10
+ , Run Date "%a %b %_d %Y %H:%M:%S" "date" 10
+ , Run UnsafeStdinReader
+ ]
+ , sepChar = "%"
+ , alignSep = "}{"
+ , template = "%UnsafeStdinReader% }{ %top% | %multicpu% | %memory% * %swap% | %eno1% | %date% | %KSHV%"
+}
diff --git a/.config/leftwm/themes/basic_xmobar/xmobar-config.hs b/.config/leftwm/themes/basic_xmobar/xmobar-config.hs
new file mode 100644
index 0000000..e7ce21f
--- /dev/null
+++ b/.config/leftwm/themes/basic_xmobar/xmobar-config.hs
@@ -0,0 +1,52 @@
+Config { font = "xft:Ubuntu:weight=bold:pixelsize=11:antialias=true:hinting=true"
+ , additionalFonts = [ "xft:Mononoki:pixelsize=11:antialias=true:hinting=true"
+ , "xft:Font Awesome 6 Free Solid:pixelsize=12"
+ , "xft:Font Awesome 6 Brands:pixelsize=12"
+ ]
+ , bgColor = "#282c34"
+ , fgColor = "#ff6c6b"
+ -- Position TopSize and BottomSize take 3 arguments:
+ -- an alignment parameter (L/R/C) for Left, Right or Center.
+ -- an integer for the percentage width, so 100 would be 100%.
+ -- an integer for the minimum pixel height for xmobar, so 24 would force a height of at least 24 pixels.
+ -- NOTE: The height should be the same as the trayer (system tray) height.
+ , position = TopSize L 100 24
+ , lowerOnStart = True
+ , hideOnStart = False
+ , allDesktops = True
+ , overrideRedirect = False
+ , persistent = True
+ , commands = [
+ -- Echos a "penguin" icon in front of the kernel output.
+ Run Com "echo" ["\xf17c"] "penguin" 3600
+ -- Get kernel version (script found in .local/bin)
+ , Run Com ".local/bin/kernel" [] "kernel" 36000
+ -- Cpu usage in percent
+ , Run Cpu ["-t", "\xf108 cpu: (%)","-H","50","--high","red"] 20
+ -- Ram used number and percent
+ , Run Memory ["-t", "\xf233 mem: M (%)"] 20
+ -- Disk space free
+ , Run DiskU [("/", "\xf0c7 hdd: free")] [] 60
+ -- Echos an "up arrow" icon in front of the uptime output.
+ , Run Com "echo" ["\xf0aa"] "uparrow" 3600
+ -- Uptime
+ , Run Uptime ["-t", "uptime: d h"] 360
+ -- Echos a "bell" icon in front of the pacman updates.
+ , Run Com "echo" ["\xf0f3"] "bell" 3600
+ -- Check for pacman updates (script found in .local/bin)
+ , Run Com ".local/bin/pacupdate" [] "pacupdate" 36000
+ -- Echos a "battery" icon in front of the pacman updates.
+ , Run Com "echo" ["\xf242"] "baticon" 3600
+ -- Battery
+ , Run BatteryP ["BAT0"] ["-t", " (%)"] 360
+ -- Time and date
+ , Run Date "\xf017 %b %d %Y - (%H:%M) " "date" 50
+ -- Script that dynamically adjusts xmobar padding depending on number of trayer icons.
+ , Run Com ".config/xmobar/trayer-padding-icon.sh" [] "trayerpad" 20
+ -- Prints out the left side items such as workspaces, layout, etc.
+ , Run UnsafeStdinReader
+ ]
+ , sepChar = "%"
+ , alignSep = "}{"
+ , template = " %UnsafeStdinReader% }{ %penguin% %kernel% %cpu% %memory% %disku% %uparrow% %uptime% %bell% %pacupdate% %baticon% %battery% %date% %trayerpad%"
+ }
diff --git a/.config/leftwm/themes/controlling_leftwm/README.md b/.config/leftwm/themes/controlling_leftwm/README.md
new file mode 100644
index 0000000..f99fd50
--- /dev/null
+++ b/.config/leftwm/themes/controlling_leftwm/README.md
@@ -0,0 +1,30 @@
+# How to control LeftWM from an external proccess
+
+LeftWM supports being controlled using EWMH calls and from an external pipe
+file.
+
+This folder has example of how to send commands to LeftWM using its external pipe
+file.
+
+A full list of supported commands can be found here:
+
+```
+LoadTheme PATH_TO_THEME
+UnloadTheme
+Reload
+SendWorkspaceToTag INDEX_OF_WORKSPACE, INDEX_OF_TAG
+SendWindowToTag INDEX_OF_TAG
+SwapScreens
+MoveWindowToLastWorkspace
+MoveWindowUp
+MoveWindowDown
+FocusWindowUp
+FocusWindowDown
+FocusWorkspaceNext
+FocusWorkspacePrevious
+CloseWindow
+NextLayout
+PreviousLayout
+```
+
+
diff --git a/.config/leftwm/themes/controlling_leftwm/change_to_tag b/.config/leftwm/themes/controlling_leftwm/change_to_tag
new file mode 100755
index 0000000..d652de4
--- /dev/null
+++ b/.config/leftwm/themes/controlling_leftwm/change_to_tag
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+leftwm-command "SendWorkspaceToTag $1 $2"
diff --git a/.config/leftwm/themes/controlling_leftwm/move_window_to_last_workspace b/.config/leftwm/themes/controlling_leftwm/move_window_to_last_workspace
new file mode 100755
index 0000000..4052c9e
--- /dev/null
+++ b/.config/leftwm/themes/controlling_leftwm/move_window_to_last_workspace
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+leftwm-command "MoveWindowToLastWorkspace"
diff --git a/.config/leftwm/themes/controlling_leftwm/move_window_to_tag b/.config/leftwm/themes/controlling_leftwm/move_window_to_tag
new file mode 100755
index 0000000..d322824
--- /dev/null
+++ b/.config/leftwm/themes/controlling_leftwm/move_window_to_tag
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+leftwm-command "SendWindowToTag $1"
diff --git a/.config/leftwm/themes/controlling_leftwm/swap_screens b/.config/leftwm/themes/controlling_leftwm/swap_screens
new file mode 100755
index 0000000..99eeea5
--- /dev/null
+++ b/.config/leftwm/themes/controlling_leftwm/swap_screens
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+leftwm-command "SwapScreens"
diff --git a/.config/leftwm/themes/current b/.config/leftwm/themes/current
new file mode 120000
index 0000000..30d73d2
--- /dev/null
+++ b/.config/leftwm/themes/current
@@ -0,0 +1 @@
+/home/dt/.config/leftwm/themes/basic_xmobar
\ No newline at end of file