-
Notifications
You must be signed in to change notification settings - Fork 2
/
user.lua
55 lines (43 loc) · 2.19 KB
/
user.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
local gfs = require("gears.filesystem")
local _User = {}
_User.Name = "Nguyen Thanh Son"
_User.Username = "@sownteedev"
_User.Colorscheme = "dark"
_User.Font = "SF Pro Display 12"
_User.Sans = "SF Pro Display"
_User.Icon = "Material Design Icons"
_User.IconName = "WhiteSur"
_User.Custom_Icon = {
{ name = "FFPWA-01J9K7824YX3HRKD9K1ZG34PZZ", to = "SoundCloud" },
{ name = "Alacritty", to = "terminal" },
{ name = "wps", to = "Word" },
{ name = "et", to = "Excel" },
{ name = "wpp", to = "PowerPoint" },
-- { name = "wps", to = "wps-office2019-wpsmain" },
-- { name = "et", to = "wps-office2019-etmain" },
-- { name = "wpp", to = "wps-office2019-wppmain" },
{ name = "pdf", to = "wps-office2019-pdfmain" },
{ name = "jetbrains-studio", to = "android-studio" },
{ name = "MongoDB Compass", to = "mongodb-compass" },
{ name = "Mysql-workbench-bin", to = "mysql-workbench" },
{ name = "YouTube Music", to = "youtube-music-desktop-app" },
{ name = "GitHub Desktop", to = "github-desktop" }
}
_User.Border = 1
_User.Radius = 10
_User.Tag = { "Terminal", "Browser", "Develop", "Media", "Other" }
_User.AutoHideDock = false
_User.API_KEY_WEATHER = ""
_User.Coordinates = { "21.0294498", "105.8544441" }
_User.ProfilePicture = gfs.get_configuration_dir() .. "themes/assets/sownteedev.png"
_User.Wallpaper = "/home/sowntee/Dotfiles/dotf/.walls/a_group_of_purple_flowers.png"
_User.Lock = "/home/sowntee/.walls/a.jpg"
_User.SongDefPicture = gfs.get_configuration_dir() .. "themes/assets/music/artdefault.jpg"
_User.AutoStart = {
-- "xrandr --auto --output DP-1 --mode 3840x2160 --primary --auto --right-of eDP-1"
"ibus-daemon -drx",
"xinput --set-prop 14 'Device Accel Constant Deceleration' 1.5",
"xsettingsd",
"libinput-gestures-setup start",
}
return _User