diff options
| -rw-r--r-- | .config/awesome/rc.lua | 10 | ||||
| -rw-r--r-- | .config/xfce4/terminal/terminalrc | 41 |
2 files changed, 46 insertions, 5 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 89945ae..7ebb11d 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -26,9 +26,9 @@ local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.ge beautiful.init(theme_path) -- This is used later as the default terminal and editor to run. -terminal = "alacritty" -editor = "alacritty -e nvim" or os.getenv("EDITOR") -editor_cmd = terminal .. " -e " .. editor +terminal = "xfce4-terminal" +editor = "xfce4-terminal -x nvim" or os.getenv("EDITOR") +editor_cmd = terminal .. " -x " .. editor -- Default modkey. -- Usually, Mod4 is the key with a logo between Control and Alt. @@ -117,7 +117,7 @@ myawesomemenu = { { "xset dpms", dpms_menu }, { "dunstctl", dunst_menu }, { "config file", editor .. " " .. awesome.conffile }, - { "picom config", function() awful.spawn.easy_async_with_shell("alacritty -e nvim $HOME/.config/picom.conf") end }, + { "picom config", function() awful.spawn.easy_async_with_shell("xfce4-terminal -x nvim $HOME/.config/picom.conf") end }, { "change wallpaper", function() awful.spawn.easy_async_with_shell("sh -c 'nitrogen'") end }, { "xdg_menu refresh", function() awful.spawn.easy_async_with_shell("sh -c 'xdg_menu --format awesome --root-menu /etc/xdg/menus/arch-applications.menu > ~/.config/awesome/xdgmenu.lua'") end }, { "refresh", awesome.restart }, @@ -370,7 +370,7 @@ globalkeys = gears.table.join( {description = "take a screenshot of an area of the screen", group = "launcher"}), awful.key({ modkey }, "x", function () awful.spawn.easy_async_with_shell("xkill") end, {description = "kill a window by brute force", group = "launcher"}), - awful.key({ "Control", "Mod1" }, "Delete", function () awful.spawn("alacritty -t 'Task Manager' -e 'htop'") end, + awful.key({ "Control", "Mod1" }, "Delete", function () awful.spawn("xfce4-terminal -T 'Task Manager' -x 'htop'") end, {description = "launch HTOP", group = "launcher"}), -- Brightness Hotkeys diff --git a/.config/xfce4/terminal/terminalrc b/.config/xfce4/terminal/terminalrc new file mode 100644 index 0000000..152441a --- /dev/null +++ b/.config/xfce4/terminal/terminalrc @@ -0,0 +1,41 @@ +[Configuration] +ColorForeground=#dcdcdc +ColorBackground=#2c2c2c +ColorCursor=#6968babaa7a7 +ColorPalette=#3f3f3f;#705050;#60b48a;#dfaf8f;#9ab8d7;#dc8cc3;#8cd0d3;#dcdcdc;#709080;#dca3a3;#72d5a3;#f0dfaf;#94bff3;#ec93d3;#93e0e3;#ffffff +MiscAlwaysShowTabs=FALSE +MiscBell=FALSE +MiscBellUrgent=FALSE +MiscBordersDefault=FALSE +MiscCursorBlinks=FALSE +MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK +MiscDefaultGeometry=95x28 +MiscInheritGeometry=FALSE +MiscMenubarDefault=FALSE +MiscMouseAutohide=FALSE +MiscMouseWheelZoom=TRUE +MiscToolbarDefault=FALSE +MiscConfirmClose=TRUE +MiscCycleTabs=TRUE +MiscTabCloseButtons=TRUE +MiscTabCloseMiddleClick=TRUE +MiscTabPosition=GTK_POS_TOP +MiscHighlightUrls=TRUE +MiscMiddleClickOpensUri=FALSE +MiscCopyOnSelect=FALSE +MiscShowRelaunchDialog=TRUE +MiscRewrapOnResize=TRUE +MiscUseShiftArrowsToScroll=FALSE +MiscSlimTabs=FALSE +MiscNewTabAdjacent=FALSE +MiscSearchDialogOpacity=100 +MiscShowUnsafePasteDialog=FALSE +MiscRightClickAction=TERMINAL_RIGHT_CLICK_ACTION_CONTEXT_MENU +ColorBoldIsBright=FALSE +ScrollingUnlimited=TRUE +FontName=JetBrains Mono 9 +BackgroundDarkness=1.000000 +ScrollingBar=TERMINAL_SCROLLBAR_NONE +ColorCursorUseDefault=FALSE +ColorCursorForeground=#303030303030 + |
